From 54d8a2ac0a2cdd0334cf26ac3e73af0483266203 Mon Sep 17 00:00:00 2001 From: Ian Littman Date: Thu, 9 Apr 2026 14:12:54 -0500 Subject: [PATCH] Turn on CodeRabbit auto-review, exclude docs changes (#43304) --- .coderabbit.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.coderabbit.yaml b/.coderabbit.yaml index b93d2a8edd..110f19f5ca 100644 --- a/.coderabbit.yaml +++ b/.coderabbit.yaml @@ -17,7 +17,9 @@ reviews: suggested_labels: false suggested_reviewers: false auto_review: - enabled: false + enabled: true + path_filters: + - "!**/*.md" # Don't weigh in on docs changes at this time path_instructions: - path: "**/*.go" instructions: "When reviewing SQL queries that are added or modified, ensure that appropriate filtering criteria are applied—especially when a query is intended to return data for a specific entity (e.g., a single host). Check for missing WHERE clauses or incorrect filtering that could lead to incorrect or non-deterministic results (e.g., returning the first row instead of the correct one). Flag any queries that may return unintended results due to lack of precise scoping. Review all SQL queries for possible SQL injection."