diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2018-12-11 23:37:28 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2018-12-11 23:43:14 +0100 |
commit | fdb2a66261b94965c351bb7349814630cabf3003 (patch) | |
tree | 95f05d4578c65fa0c1dfa7df776515858ebb9265 | |
parent | 0375cbcbc0bbd2224a68f37c5ab68b380c51467f (diff) | |
download | servo-fdb2a66261b94965c351bb7349814630cabf3003.tar.gz servo-fdb2a66261b94965c351bb7349814630cabf3003.zip |
Taskcluster: start a decision task for all try-* branches
This is an alternative fix for https://github.com/servo/saltfs/issues/903,
and anticipates adding trychooser support to Taskcluster
-rw-r--r-- | .taskcluster.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.taskcluster.yml b/.taskcluster.yml index 3155a98c958..ea33b12034f 100644 --- a/.taskcluster.yml +++ b/.taskcluster.yml @@ -5,7 +5,9 @@ policy: tasks: - $if: 'tasks_for == "github-push"' then: - $if: 'event.ref in ["refs/heads/auto", "refs/heads/try", "refs/heads/try-taskcluster"]' + $if: >- + event.ref in ["refs/heads/auto", "refs/heads/try"] || + event.ref[:15] == "refs/heads/try-" then: # NOTE: when updating this consider whether the daily hook needs similar changes: |