Skip to content

Commit 915510b

Browse files
authored
Run GitHub Actions on all PRs (letsencrypt#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.
1 parent d405f9e commit 915510b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/boulder-ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ on:
1111
- release-branch-*
1212
pull_request:
1313
branches:
14-
- main
15-
- release-branch-*
14+
- '**'
1615

1716
# Allows you to run this workflow manually from the Actions tab
1817
workflow_dispatch:

0 commit comments

Comments
 (0)