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.
This commit is contained in:
parent
079f79aba5
commit
be7e07cc1a
|
|
@ -4,9 +4,10 @@ language: "en-US"
|
||||||
early_access: true
|
early_access: true
|
||||||
reviews:
|
reviews:
|
||||||
profile: chill
|
profile: chill
|
||||||
high_level_summary: true
|
high_level_summary: false # don't post summary until explicitly invoked
|
||||||
request_changes_workflow: false
|
request_changes_workflow: false
|
||||||
review_status: false
|
review_status: false
|
||||||
|
commit_status: false # don't set commit status until explicitly invoked
|
||||||
collapse_walkthrough: false
|
collapse_walkthrough: false
|
||||||
poem: false
|
poem: false
|
||||||
auto_review:
|
auto_review:
|
||||||
|
|
@ -33,4 +34,7 @@ reviews:
|
||||||
Flag any process.exit() without error message.
|
Flag any process.exit() without error message.
|
||||||
chat:
|
chat:
|
||||||
auto_reply: true # Response to mentions in comments, a la @coderabbit review
|
auto_reply: true # Response to mentions in comments, a la @coderabbit review
|
||||||
|
issue_enrichment:
|
||||||
|
auto_enrich:
|
||||||
|
enabled: false # don't auto-comment on issues
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue