ci: run checks on the bridge integration branch#408
Merged
islandbitcoin merged 1 commit intoJun 24, 2026
Merged
Conversation
Test/check workflows were filtered to `pull_request: branches: [main]`, so PRs targeting the long-lived `tmp/bridge-rebase-pr-ready` integration branch never triggered CI. Add the integration branch to the pull_request filter on all gating workflows, and add a push trigger on the core build/test/lint workflows (check-code, unit-test, integration-test) so the branch tip is checked as PRs stack onto it. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
71d3290 to
d95b5a3
Compare
50af5e6
into
tmp/bridge-rebase-pr-ready
9 of 12 checks passed
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.
Why
Stacked cleanup PRs against
tmp/bridge-rebase-pr-readyneed the same CI signal as PRs againstmain. The existing workflows only matchedpull_requestevents where the base branch ismain, so PRs like #415 do not get Quickstart/Integration/Check Code unless this branch filter is present on the integration branch.What
tmp/bridge-rebase-pr-readyto thepull_requestbranch filter for the gating workflows:pushtriggers fortmp/bridge-rebase-pr-readyon Check Code, Unit test, and Integration test so the integration branch tip keeps a baseline signal as fixes land.Verification
origin/tmp/bridge-rebase-pr-ready(d5498c12).Notes
This PR intentionally targets
tmp/bridge-rebase-pr-ready, notmain. Once the bridge integration branch is no longer needed, these temporary branch filters should be removed.The workflows exposed by this PR may report current integration-branch failures; that is expected and is the reason we need this CI plumbing before landing the smaller cleanup PRs.