ci: trigger CI on any pull request, not just PRs into main#11
Merged
Conversation
Drop the branches: [main] filter so stacked PRs whose base is another branch in the same repo (e.g. PR #7 stacked on this one) still get build-and-test runs. Keep the push trigger narrow to main so CI does not fire on every force-push across feature branches. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
TL;DR
Broaden the CI workflow's
pull_requesttrigger so it runs on PRs targeting any branch, not justmain.Motivation
Stacked PRs against feature branches (such as a PR opened against another open PR's branch, rather than directly against main) currently skip CI because the workflow filters on the base branch. The result is that downstream PRs in a stack ship without automated test or build checks, and reviewers have to remember to run things locally to catch what CI would otherwise flag. Removing the base-branch filter makes CI run uniformly on every pull request, which is the behaviour reviewers expect.
Summary
branches:filter on thepull_requesttrigger so CI runs on every PR.🤖 Generated with Claude Code