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:
Aaron Gable 2021-07-09 10:32:27 -07:00 committed by GitHub
parent d405f9e616
commit 915510b5ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -11,8 +11,7 @@ on:
- release-branch-*
pull_request:
branches:
- main
- release-branch-*
- '**'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch: