From e57dc6778a83b7c78681273643978b6552005bea Mon Sep 17 00:00:00 2001 From: Jonathan Hui Date: Wed, 4 Mar 2026 19:29:00 -0600 Subject: [PATCH] [gemini] add configuration for Gemini code review (#12619) This commit adds the .gemini/config.yaml file to configure the Gemini code review tool. The configuration includes settings for review severity, comment limits, and automated review triggers for pull requests. --- .gemini/config.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .gemini/config.yaml diff --git a/.gemini/config.yaml b/.gemini/config.yaml new file mode 100644 index 000000000..f4de2370e --- /dev/null +++ b/.gemini/config.yaml @@ -0,0 +1,10 @@ +have_fun: false +code_review: + disable: false + comment_severity_threshold: MEDIUM + max_review_comments: -1 + pull_request_opened: + help: false + summary: true + code_review: true + include_drafts: true