Bug 1781051 - simplify setting ownerEmail in .taskcluster.yml

Remove special cases for bors and github-actions:
- bors is no longer used for this, as far as I know
- the github-actions special case breaks chain-of-trust's ability to
  rebuild the decision task definition: because we don't leave a
  breadcrumb to record event.sender.login, it has to guess, and if it
  gets it wrong, chain of trust verification fails
This commit is contained in:
Julien Cristau 2022-09-08 18:21:37 +02:00 committed by mergify[bot]
parent 72227cb6a3
commit 32a4be11d0
1 changed files with 4 additions and 10 deletions

View File

@ -13,17 +13,11 @@ tasks:
$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
$if: 'tasks_for == "github-push"'
then: '${event.pusher.email}'
else:
$if: 'event.sender.login == "github-actions[bot]"'
then: 'github-actions[bot]@users.noreply.github.com'
else:
$if: 'tasks_for == "github-push"'
then: '${event.pusher.email}'
else:
$if: 'tasks_for == "github-pull-request"'
then: '${event.pull_request.user.login}@users.noreply.github.com'
$if: 'tasks_for == "github-pull-request"'
then: '${event.pull_request.user.login}@users.noreply.github.com'
baseRepoUrl:
$if: 'tasks_for == "github-push"'
then: '${event.repository.html_url}'