fix(release): take the bundle pnpm version from packageManager - #650
Conversation
PR #570 moved the pnpm version to the repo-root packageManager field and removed the version: 10 pin from ci.yml and _rust-binary.yml, but _bundle.yml kept its pin. pnpm/action-setup refuses to run when both are set, so every deploy: bundle worker release fails at setup. Drop the pin so the bundle workflow reads packageManager like the other two.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Warning Review limit reached
Next review available in: 19 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: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (1)
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 |
skill-check — worker0 verified, 50 skipped (no docs/).
Four for four. Nicely done. |
What
Removes the
version: 10input frompnpm/action-setupin_bundle.ymlso the pnpm version comes from the repo-rootpackage.jsonpackageManagerfield, matchingci.ymland_rust-binary.yml.Why
Every
deploy: bundleworker release currently fails in the Bundle build job:PR #570 bumped the root
packageManagertopnpm@11.13.1and removed theversion: 10pin fromci.ymland_rust-binary.yml, but_bundle.ymlkept its pin, andpnpm/action-setuprefuses to run when both are set.Failed release runs: pi/v0.1.12, opencode/v0.1.8, claude-code/v0.1.11. The tags exist with the correct annotated messages, so Release can be re-dispatched for them once this lands.
Testing
CI-only change. The three failed tags will be re-run through the Release workflow via workflow_dispatch after merge to verify the bundle path end to end.