From 915510b5abff6319616c3e2424ff3dba79fa15dd Mon Sep 17 00:00:00 2001 From: Aaron Gable Date: Fri, 9 Jul 2021 10:32:27 -0700 Subject: [PATCH] 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. --- .github/workflows/boulder-ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/boulder-ci.yml b/.github/workflows/boulder-ci.yml index 69b497757..c646f522e 100644 --- a/.github/workflows/boulder-ci.yml +++ b/.github/workflows/boulder-ci.yml @@ -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: