From deb844c9d22559c4d93e4bf5efe19327adeacdbd Mon Sep 17 00:00:00 2001 From: "hiraoku.shinichi" Date: Sat, 27 Jun 2026 00:38:21 +0900 Subject: [PATCH] Disable CodeRabbit request-changes workflow --- .coderabbit.yaml | 2 +- README.md | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.coderabbit.yaml b/.coderabbit.yaml index 77f2f11..466e1db 100644 --- a/.coderabbit.yaml +++ b/.coderabbit.yaml @@ -4,7 +4,7 @@ early_access: false reviews: profile: "assertive" - request_changes_workflow: true + request_changes_workflow: false high_level_summary: true review_status: true review_details: false diff --git a/README.md b/README.md index 5053bfe..ead408b 100644 --- a/README.md +++ b/README.md @@ -13,9 +13,7 @@ flowchart LR Eligible -->|non-draft human PR| Config["load coderabbit/.coderabbit.yaml"] Config --> Review["CodeRabbit review
assertive profile"] Review --> Findings["summary, status,
actionable findings"] - Findings --> Gate{"blocking issue?"} - Gate -->|yes| Changes["request changes"] - Gate -->|no| Continue["leave review context
for human maintainer"] + Findings --> Continue["leave review context
for human maintainer"] ``` ## What The Configuration Does @@ -23,7 +21,7 @@ flowchart LR | Area | Setting | Effect | |---|---|---| | Review profile | `reviews.profile: assertive` | Favors direct, actionable findings. | -| Review workflow | `request_changes_workflow: true` | Allows CodeRabbit to request changes for blocking findings. | +| Review workflow | `request_changes_workflow: false` | Keeps CodeRabbit findings advisory so merge does not depend on a later CodeRabbit approval. | | Summaries | `high_level_summary: true`, `review_status: true` | Adds PR-level summary and status output. | | Noise reduction | `review_details: false`, `poem: false` | Avoids decorative or verbose review output. | | Auto review | `auto_review.enabled: true` | Reviews eligible non-draft PRs automatically. |