fix(ci): pin claude-code-reusable workflow to SHA#224
fix(ci): pin claude-code-reusable workflow to SHA#224
Conversation
|
Warning Rate limit exceeded
Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 46 minutes and 2 seconds. ⌛ How to resolve this issue?After the wait time has elapsed, 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 have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
✨ 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 |
|
Self-review complete — the change is minimal and correct:
@don-petry — you are listed in CODEOWNERS as the code owner for this repository. Please review and merge when ready. |
|
There was a problem hiding this comment.
Pull request overview
Pins the org-level Claude Code reusable workflow reference to an immutable commit SHA to satisfy action-pinning compliance, and syncs the local thin-caller workflow triggers with the org template.
Changes:
- Pin
petry-projects/.github/.github/workflows/claude-code-reusable.ymlfrom@v1to a commit SHA. - Add missing
check_run: [completed]trigger to align with the org template.
| jobs: | ||
| claude-code: | ||
| uses: petry-projects/.github/.github/workflows/claude-code-reusable.yml@v1 | ||
| uses: petry-projects/.github/.github/workflows/claude-code-reusable.yml@ee22b427cbce9ecadcf2b436acb57c3adf0cb63d # v1 |
There was a problem hiding this comment.
The file header says you “MUST NOT change” the trigger events or the uses: line, but this PR necessarily updates both (pinning to a SHA and adding check_run). To avoid confusing future maintainers (and to align with the org action-pinning policy), please update the header guidance to explicitly allow syncing these fields from the upstream template / updating the pinned SHA.



Summary
.github/workflows/claude.ymlreusable workflow reference from tag@v1to commit SHAee22b427cbce9ecadcf2b436acb57c3adf0cb63dper the org action-pinning policycheck_run: [completed]triggerChange:
```yaml
Before
uses: petry-projects/.github/.github/workflows/claude-code-reusable.yml@v1
After
uses: petry-projects/.github@ee22b42 # v1
```
Closes #155
Generated with Claude Code