chore: run release-plz script with bash#3
Conversation
|
Warning Review limit reached
More reviews will be available in 3 minutes. Learn how PR review limits work. Your organization has run out of usage credits. Purchase more in the billing tab. ⌛ How to resolve this issue?After more reviews become available, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans include higher PR review limits than trial, open-source, and free plans. In all cases, reviews become available again over time. During sustained high-volume PR review activity, CodeRabbit may temporarily slow when the next review becomes available. Please see our Fair Usage Limits Policy for further information. ✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
Greptile SummaryFixes the
Confidence Score: 5/5Safe to merge — one-line targeted fix that directly addresses the documented CI failure. The change is a minimal, well-scoped fix: replacing a direct script invocation with an explicit bash interpreter call. The script itself is unchanged and already has a #!/usr/bin/env bash shebang, so running it under bash is consistent with its intent. No logic, tooling versions, or other configuration is affected. No files require special attention. Important Files Changed
Reviews (1): Last reviewed commit: "chore: run release-plz script with bash" | Re-trigger Greptile |
Summary
Context
The release-plz workflow failed on main with
./scripts/release-plz.sh: Permission deniedin https://github.com/jdx/pr-closer/actions/runs/27179750583/job/80236118492.Testing
DRY_RUN=1 mise run release-plzThis PR description was generated by an AI coding assistant.
Note
Low Risk
Single-line task invocation change with no auth, data, or release logic changes.
Overview
The
release-plzmise task now runsbash scripts/release-plz.shinstead of./scripts/release-plz.sh, so the workflow no longer relies on the script’s executable bit.This addresses CI failures (
Permission denied) on main when invoking the release-plz task.Reviewed by Cursor Bugbot for commit 01198bc. Bugbot is set up for automated code reviews on this repo. Configure here.