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 Review limit reached
More reviews will be available in 27 minutes and 44 seconds. 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. ℹ️ 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.