chore(coderabbit): disable request_changes_workflow#38
Conversation
CodeRabbit was submitting CHANGES_REQUESTED reviews under the org ruleset's pull_request rule, blocking merge even though required_approving_review_count=0. Switch to false (the CodeRabbit default) so reviews are COMMENTED instead. Discovered debugging ByronWilliamsCPA/gleif#38.
|
Warning Rate limit exceeded
You’ve run out of usage credits. Purchase more in the billing tab. ⌛ 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: ASSERTIVE 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 |
|
There was a problem hiding this comment.
Pull request overview
Disables CodeRabbit’s request_changes_workflow so the bot posts reviews as COMMENTED instead of CHANGES_REQUESTED, preventing CodeRabbit from blocking merges under the org ruleset.
Changes:
- Set
reviews.request_changes_workflow: falsein CodeRabbit configuration to avoid merge-gating PRs viaCHANGES_REQUESTED.



Summary
CodeRabbit's
request_changes_workflow: truewas causing the bot to submitCHANGES_REQUESTEDreviews on PRs with actionable comments. Under the org ruleset, any outstandingCHANGES_REQUESTEDblocks merge even withrequired_approving_review_count: 0. The count only governs required approvals, not whether to ignore rejections.Flipping to
false(the CodeRabbit default) makes the bot submitCOMMENTEDreviews instead. Same review content, no merge gate.Related
Discovered debugging ByronWilliamsCPA/gleif#38 (BLOCKED with all green CI). Identical one-line PRs going out to all affected repos. Template fix in ByronWilliamsCPA/cookiecutter-python-template#52.