fix(ci): pin release tag to triggering commit (Plugin Store tag race) - #32
Conversation
… races The release step created its tag without target_commitish, so the Releases API pointed it at the default branch's HEAD at creation time. With back-to-back stacked merges, v2026.5.0 got tagged on a commit whose Info.plist read 2026.6.0, and Indigo's Plugin Store rejected the release (asset zip was correct; the tag was not). target_commitish: github.sha makes tag, zip, and plist agree. Cleanup already done: inconsistent v2026.5.0 release + tag deleted; v2026.6.1 (Latest) verified consistent. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01EYAGXd4bE9D9Z5kZeSHeo7
|
Warning Review limit reached
Next review available in: 42 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: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (3)
✨ 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 |
Fixes the Plugin Store rejection reported for v2026.5.0 ('release tagged 2026.5.0 doesn't match Info.plist 2026.6.0').
Root cause:
softprops/action-gh-releasecreates the tag via the Releases API withouttarget_commitish, which defaults to the default branch's HEAD at creation time. Our stacked-PR merge train landed three merges in ~40s, so #29's release run tagged a commit that already contained #30's version bump. The uploaded zip (built fromgithub.sha's checkout) was internally consistent — only the tag pointed at the wrong commit, and Indigo reads Info.plist at the tag.Fix:
target_commitish: ${{ github.sha }}on the release step. Cleanup (already done): deleted the inconsistent v2026.5.0 release + tag; verified v2026.6.1 (Latest) is consistent.2026.6.1 → 2026.6.2 (patch, CI-only + version bump for check-version).
🤖 Generated with Claude Code
https://claude.ai/code/session_01EYAGXd4bE9D9Z5kZeSHeo7