Skip to content

Commit

Permalink
Fix multiple truthy expressions in eval (#164)
Browse files Browse the repository at this point in the history
I don't know why this wasn't hit on dev or master...but we hit it on prod
  • Loading branch information
bhearsum authored May 2, 2024
1 parent 43349ff commit f9b1239
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .taskcluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ tasks:
$switch:
'tasks_for[:19] == "github-pull-request"': ${event.pull_request.base.ref}
'tasks_for == "github-push" && event.base_ref': ${event.base_ref}
'tasks_for == "github-push"': ${event.ref}
'tasks_for == "github-push" && !(event.base_ref)': ${event.ref}
'tasks_for == "github-release"': ''
'tasks_for in ["cron", "action"]': '${push.branch}'
'tasks_for == "pr-action"': '${push.base_branch}'
Expand Down

0 comments on commit f9b1239

Please sign in to comment.