From be7e07cc1acda46b50469926099fb96f2e4a4b8f Mon Sep 17 00:00:00 2001 From: Alex Verkhovsky Date: Thu, 11 Dec 2025 15:32:24 -0700 Subject: [PATCH] fix: fully silence CodeRabbit unless explicitly invoked (#1096) - Disable high_level_summary to stop PR description modifications - Disable commit_status to stop GitHub status checks - Disable issue_enrichment.auto_enrich to stop auto-commenting on issues These settings complement the existing review_status: false and auto_review.enabled: false to ensure CodeRabbit only responds when explicitly tagged with @coderabbitai review. --- .coderabbit.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.coderabbit.yaml b/.coderabbit.yaml index 8da8c6b4..30972582 100644 --- a/.coderabbit.yaml +++ b/.coderabbit.yaml @@ -4,9 +4,10 @@ language: "en-US" early_access: true reviews: profile: chill - high_level_summary: true + high_level_summary: false # don't post summary until explicitly invoked request_changes_workflow: false review_status: false + commit_status: false # don't set commit status until explicitly invoked collapse_walkthrough: false poem: false auto_review: @@ -33,4 +34,7 @@ reviews: Flag any process.exit() without error message. chat: auto_reply: true # Response to mentions in comments, a la @coderabbit review +issue_enrichment: + auto_enrich: + enabled: false # don't auto-comment on issues