Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion taskcluster/self_taskgraph/custom_target_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ def target_tasks_release(full_task_graph, parameters, graph_config):

# Ensure we don't run `taskcluster-taskgraph` release tasks when publishing
# `pytest-taskgraph`.
if parameters["head_ref"].startswith("refs/tags/pytest-taskgraph"):
head_ref = parameters.rsplit("/", 1)[-1]
if head_ref.startswith("pytest-taskgraph"):
tasks = {
l: t
for l, t in tasks.items()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ files_changed:
- test/test_decision.py
filters:
- target_tasks_method
head_ref: refs/tags/pytest-taskgraph-v1.0.0
head_ref: pytest-taskgraph-v1.0.0
head_repository: https://github.com/taskcluster/taskgraph
head_rev: release-test
head_tag: pytest-taskgraph-v1.0.0
head_rev: pytest-taskgraph-v1.0.0
head_tag: ''
level: '3'
moz_build_date: '20240207083344'
next_version: null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ files_changed:
- test/test_decision.py
filters:
- target_tasks_method
head_ref: refs/tags/1.0.0
head_ref: 1.0.0
head_repository: https://github.com/taskcluster/taskgraph
head_rev: release-test
head_tag: 1.0.0
head_rev: 1.0.0
head_tag: ''
level: '3'
moz_build_date: '20240207083344'
next_version: null
Expand Down
Loading