Skip to content

Commit

Permalink
ci: fix bug in Taskgraph release graphs
Browse files Browse the repository at this point in the history
  • Loading branch information
ahal committed Jan 15, 2025
1 parent 8197cf8 commit 403aa24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taskcluster/self_taskgraph/custom_target_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def target_tasks_release(full_task_graph, parameters, graph_config):

# Ensure we don't run `taskcluster-taskgraph` release tasks when publishing
# `pytest-taskgraph`.
head_ref = parameters.rsplit("/", 1)[-1]
head_ref = parameters["head_ref"].rsplit("/", 1)[-1]
if head_ref.startswith("pytest-taskgraph"):
tasks = {
l: t
Expand Down

0 comments on commit 403aa24

Please sign in to comment.