fix(ci): set group-pull-request-title-pattern for rust-core release group#2470
Merged
Conversation
…se group
The linked-versions plugin emits a grouped release PR titled
"chore(main): release wren-rust-core libraries", which has no version. Without a
matching group-pull-request-title-pattern, release-please rejects it ("Bad pull
request title") on merge and creates no releases or tags, so the crates.io
publish never runs (googleapis/release-please#2306).
Set the pattern to match the generated title so the merged group PR is
recognized and the releases/tags are created. This also lets release-please
retroactively complete the already-merged, still-untagged 0.2.0 release PR.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Contributor
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Repository UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
WalkthroughThe release configuration adds a grouped pull request title pattern for Wren Rust Core library releases. ChangesRelease title configuration
Estimated code review effort: 1 (Trivial) | ~2 minutes Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
douenergy
approved these changes
Jul 10, 2026
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.
Problem
The merge of the rust-core release PR (#2467) did not create releases/tags and the crates.io publish never ran. Root cause is a known release-please bug (#2306):
The
linked-versionsplugin emits a grouped release PR titledchore(main): release wren-rust-core libraries(no version). Without a matchinggroup-pull-request-title-pattern, release-please rejects it on merge —— so it creates no releases/tags,
release_createdstays false, andpublish-wren-cratesis skipped. The version bump itself worked: all three crates + the manifest are at 0.2.0 onmain, just untagged/unpublished.Fix
Add the matching pattern so the grouped PR is recognized both when generated and when parsed on merge:
Effect after merge
On the next Release Please run, release-please re-detects the already-merged, still-untagged #2467, now parses its title successfully, and creates the
wren-manifest-macro-v0.2.0/wren-core-base-v0.2.0/wren-semantic-core-v0.2.0releases →release_createdbecomes true →publish-wren-cratesruns and publishes 0.2.0 to crates.io (bottom-up, via Trusted Publishing).No source or version changes — config only.
Summary by CodeRabbit