From f5bf2f569038201e4bf0475901d58640697d6421 Mon Sep 17 00:00:00 2001 From: Johan Lorenzo Date: Fri, 11 Oct 2019 14:49:16 +0200 Subject: [PATCH] For #5382: Fix cron jobs which were not scheduled anymore --- .taskcluster.yml | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/.taskcluster.yml b/.taskcluster.yml index a36157652..b8a3ba3b3 100644 --- a/.taskcluster.yml +++ b/.taskcluster.yml @@ -14,21 +14,22 @@ tasks: $let: # Github events have this stuff in different places... ownerEmail: - $if: 'event.sender.login == "bors[bot]"' - then: 'skaspari+mozlando@mozilla.com' # It must match what's in bors.toml - else: - $if: 'tasks_for == "github-push"' - then: '${event.pusher.email}' - # Assume Pull Request + $if: 'tasks_for in ["cron", "action"]' + then: '${tasks_for}@noreply.mozilla.org' + else: + $if: 'event.sender.login == "bors[bot]"' + then: 'skaspari+mozlando@mozilla.com' # It must match what's in bors.toml else: - $if: 'tasks_for == "github-pull-request"' - then: '${event.pull_request.user.login}@users.noreply.github.com' + $if: 'tasks_for == "github-push"' + then: '${event.pusher.email}' + # Assume Pull Request else: - $if: 'tasks_for == "github-release"' - then: '${event.sender.login}@users.noreply.github.com' + $if: 'tasks_for == "github-pull-request"' + then: '${event.pull_request.user.login}@users.noreply.github.com' else: - $if: 'tasks_for in ["cron", "action"]' - then: '${tasks_for}@noreply.mozilla.org' + $if: 'tasks_for == "github-release"' + then: '${event.sender.login}@users.noreply.github.com' + baseRepoUrl: $if: 'tasks_for in ["github-push", "github-release"]' then: '${event.repository.html_url}'