allow v2.0.0 to publish prerelease cuts - #4978
Conversation
|
|
Merge activity
|
|
Warning Review limit reachedYou’ve reached a temporary PR review limit under our Fair Usage Limits Policy. Next review available in: 8 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (1)
📝 WalkthroughWalkthroughThe GitHub Actions release pipeline workflow's push trigger branch filter is updated to include the v2.0.0 branch alongside main, expanding when the release pipeline runs automatically. ChangesRelease Pipeline Trigger Update
Estimated code review effort: 1 (Trivial) | ~2 minutes Related Issues
Suggested labels: ci, chore Suggested reviewers: N/A 🐰 A branch is added, quick as a hop, ✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
Confidence Score: 4/5Safe to merge — the one-line branch addition is well-supported by prerelease guards already in every downstream script. The existing scripts (detect-all-changes, create-docker-manifest, release-core, release-bifrost-http-finalize) all key off the presence of a hyphen in the version string to avoid promoting prerelease artifacts to latest. The change is additive with no logic alterations. Two minor quality issues: the header comment becomes stale, and the shared concurrency group now serialises releases across both branches. release-bifrost-http-finalize.sh (not in this diff) contains release notes text that unconditionally mentions the latest Docker tag even for prerelease builds. Important Files Changed
|
| @@ -3,7 +3,7 @@ name: Release Pipeline | |||
| # Triggers automatically on push to main when any version file changes | |||
There was a problem hiding this comment.
The top-of-file comment is now inaccurate — it still only mentions
main but the trigger has been broadened to include v2.0.0.
| # Triggers automatically on push to main when any version file changes | |
| # Triggers automatically on push to main or v2.0.0 when any version file changes |
Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!

Summary
Adds the
v2.0.0branch as a trigger for the release pipeline so that releases can be cut directly from that branch in addition tomain.Changes
v2.0.0to the list of branches that trigger the release pipeline on push, enabling the pipeline to run when changes are pushed to thev2.0.0branch.Type of change
Affected areas
How to test
Push a commit to the
v2.0.0branch and verify the release pipeline is triggered automatically.Screenshots/Recordings
N/A
Breaking changes
Related issues
N/A
Security considerations
No security implications. This only affects which branches trigger the CI release pipeline.
Checklist
docs/contributing/README.mdand followed the guidelines