ci: trigger CI on release/* branches#660
Merged
torlando-tech merged 1 commit intomainfrom Mar 11, 2026
Merged
Conversation
The release/v0.9.x branch was not covered by CI because the branch pattern 'v[0-9].[0-9]+.x' doesn't match the 'release/' prefix. PRs targeting release branches were merged without lint, compile, or test checks, which allowed broken cherry-picks to slip through (see the v0.9.19-beta tagged release failure). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Contributor
Greptile SummaryThis PR fixes missing CI coverage on
Confidence Score: 5/5
Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[Code Push / PR Opened] --> B{Branch matches trigger?}
B -- "main" --> C[CI Triggers ✅]
B -- "v[0-9].[0-9]+.x\ne.g. v0.9.x" --> C
B -- "release/**\ne.g. release/v0.9.x\n(NEW - this PR)" --> C
B -- "other branch" --> D[CI Skipped ❌]
C --> E[validate-wrapper]
C --> F[lint]
C --> G[threading-audit]
F --> H[proguard-verification]
F --> I[python-tests]
F --> J[kotlin-tests x4]
F --> K[module-tests]
F --> L[instrumented-tests]
E --> H
H & I & J & K & L --> M[ci-passed]
Last reviewed commit: 3345488 |
Contributor
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
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.
Summary
v[0-9].[0-9]+.x) didn't matchrelease/v0.9.x— therelease/prefix was missing from the pattern'release/**'to bothpushandpull_requesttriggersTest plan
release/v0.9.x🤖 Generated with Claude Code