From 9cc449121c5e0affe1dbdf66bb6a1d686947ca38 Mon Sep 17 00:00:00 2001 From: Andrei Litvin Date: Wed, 26 Feb 2025 13:15:43 -0500 Subject: [PATCH 1/2] Add a default gemini config. This is based on https://developers.google.com/gemini-code-assist/docs/customize-gemini-behavior-github#custom-configuration Disabled the "have fun" and "summary" (as the PR summary should already contain this) --- .gemini/config.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .gemini/config.yaml diff --git a/.gemini/config.yaml b/.gemini/config.yaml new file mode 100644 index 00000000000000..e673871add0920 --- /dev/null +++ b/.gemini/config.yaml @@ -0,0 +1,9 @@ +have_fun: false +code_review: + disable: false + comment_severity_threshold: MEDIUM + max_review_comments: -1 + pull_request_opened: + help: false + summary: false + code_review: true From 0e474c62d96d772190afae2aa8cbe0a3c3a024c6 Mon Sep 17 00:00:00 2001 From: Andrei Litvin Date: Wed, 26 Feb 2025 13:32:30 -0500 Subject: [PATCH 2/2] Disable by default --- .gemini/config.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gemini/config.yaml b/.gemini/config.yaml index e673871add0920..2df0dc98dd5d24 100644 --- a/.gemini/config.yaml +++ b/.gemini/config.yaml @@ -1,6 +1,7 @@ have_fun: false code_review: - disable: false + # Disabled until we have clarity/guidance at a CSA level + disable: true comment_severity_threshold: MEDIUM max_review_comments: -1 pull_request_opened: