Run GitHub Actions on all PRs (#5510)
Currently we only run pre-submit CI for PRs which are against our main branch or release branches. This means that "stacked" PRs (a chain of PRs which all build on each other, and which will need to be submitted in order) don't get any CI runs for PRs beyond the first. We don't expect large amounts of PR spam running us out of free GH Actions credits, so just run CI for all PRs. Continue to run post- submit CI only for commits to main and release branches so that we don't prematurely run it on not-yet-PR-ready branches.
This commit is contained in:
parent
d405f9e616
commit
915510b5ab
|
|
@ -11,8 +11,7 @@ on:
|
||||||
- release-branch-*
|
- release-branch-*
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- '**'
|
||||||
- release-branch-*
|
|
||||||
|
|
||||||
# Allows you to run this workflow manually from the Actions tab
|
# Allows you to run this workflow manually from the Actions tab
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue