mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-17 15:26:23 +00:00
[fenix] For https://github.com/mozilla-mobile/fenix/issues/5382: Updates bors bot integration with Taskcluster (https://github.com/mozilla-mobile/fenix/pull/5929)
This commit is contained in:
parent
68a70eaa77
commit
c7f57ab34c
5
.github/PULL_REQUEST_TEMPLATE
vendored
5
.github/PULL_REQUEST_TEMPLATE
vendored
@ -1,4 +1,5 @@
|
|||||||
|
---
|
||||||
|
<!-- Text above this line will be added to the commit once "bors" merges this PR -->
|
||||||
|
|
||||||
### Pull Request checklist
|
### Pull Request checklist
|
||||||
<!-- Before submitting the PR, please address each item -->
|
<!-- Before submitting the PR, please address each item -->
|
||||||
@ -14,4 +15,4 @@
|
|||||||
1. click on Show All Checks,
|
1. click on Show All Checks,
|
||||||
2. click Details next to "Taskcluster (pull_request)" after it appears and then finishes with a green checkmark,
|
2. click Details next to "Taskcluster (pull_request)" after it appears and then finishes with a green checkmark,
|
||||||
3. click on the "Fenix - assemble" task, then click "Run Artifacts".
|
3. click on the "Fenix - assemble" task, then click "Run Artifacts".
|
||||||
4. the APK links should be on the left side of the screen, named for each CPU architecture
|
4. the APK links should be on the left side of the screen, named for each CPU architecture
|
||||||
|
@ -14,18 +14,21 @@ tasks:
|
|||||||
$let:
|
$let:
|
||||||
# Github events have this stuff in different places...
|
# Github events have this stuff in different places...
|
||||||
ownerEmail:
|
ownerEmail:
|
||||||
$if: 'tasks_for == "github-push"'
|
$if: 'event.sender.login == "bors[bot]"'
|
||||||
then: '${event.pusher.email}'
|
then: 'skaspari+mozlando@mozilla.com' # It must match what's in bors.toml
|
||||||
# Assume Pull Request
|
else:
|
||||||
else:
|
$if: 'tasks_for == "github-push"'
|
||||||
$if: 'tasks_for == "github-pull-request"'
|
then: '${event.pusher.email}'
|
||||||
then: '${event.pull_request.user.login}@users.noreply.github.com'
|
# Assume Pull Request
|
||||||
else:
|
else:
|
||||||
$if: 'tasks_for == "github-release"'
|
$if: 'tasks_for == "github-pull-request"'
|
||||||
then: '${event.sender.login}@users.noreply.github.com'
|
then: '${event.pull_request.user.login}@users.noreply.github.com'
|
||||||
else:
|
else:
|
||||||
$if: 'tasks_for in ["cron", "action"]'
|
$if: 'tasks_for == "github-release"'
|
||||||
then: '${tasks_for}@noreply.mozilla.org'
|
then: '${event.sender.login}@users.noreply.github.com'
|
||||||
|
else:
|
||||||
|
$if: 'tasks_for in ["cron", "action"]'
|
||||||
|
then: '${tasks_for}@noreply.mozilla.org'
|
||||||
baseRepoUrl:
|
baseRepoUrl:
|
||||||
$if: 'tasks_for in ["github-push", "github-release"]'
|
$if: 'tasks_for in ["github-push", "github-release"]'
|
||||||
then: '${event.repository.html_url}'
|
then: '${event.repository.html_url}'
|
||||||
@ -88,7 +91,9 @@ tasks:
|
|||||||
then: ${event.action}
|
then: ${event.action}
|
||||||
else: 'UNDEFINED'
|
else: 'UNDEFINED'
|
||||||
in:
|
in:
|
||||||
$if: 'tasks_for in ["github-pull-request", "action", "cron"] || (tasks_for == "github-push" && head_branch[:10] != "refs/tags/") || (tasks_for == "github-release" && releaseAction == "published")'
|
$if: 'tasks_for in ["github-pull-request", "action", "cron"]
|
||||||
|
|| (tasks_for == "github-push" && head_branch[:10] != "refs/tags/") && (head_branch != "staging.tmp") && (head_branch != "trying.tmp")
|
||||||
|
|| (tasks_for == "github-release" && releaseAction == "published")'
|
||||||
then:
|
then:
|
||||||
$let:
|
$let:
|
||||||
level:
|
level:
|
||||||
|
Loading…
Reference in New Issue
Block a user