Skip to content

Commit

Permalink
Make all tasks run for github-release events
Browse files Browse the repository at this point in the history
Somewhere along the line, we changed it so the module-build, beetmover,
and other tasks don't run unless `target_tasks=full`.  This fixes things
so we set that value on github releases.
  • Loading branch information
bendk committed Jun 5, 2023
1 parent 0ea7d0f commit 78ab4ce
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions taskcluster/app_services_taskgraph/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ def get_decision_parameters(graph_config, parameters):
"Cannot run github-release if tag {} is different than in-tree "
"{version} from buildconfig.yml".format(head_tag[1:], version)
)
parameters["target_tasks_method"] = "full"
elif parameters["tasks_for"] == "github-pull-request":
pr_title = os.environ.get("APPSERVICES_PULL_REQUEST_TITLE", "")
preview_match = PREVIEW_RE.search(pr_title)
Expand Down

0 comments on commit 78ab4ce

Please sign in to comment.