From d1d744900c02b170bc3bf22e1e8da3537585e992 Mon Sep 17 00:00:00 2001 From: Kevin Moore Date: Fri, 28 Aug 2026 04:36:05 +0000 Subject: [PATCH] chore(gemini): silence PR open help banner and auto-review drafts - Set pull_request_opened.help to false to eliminate the noisy command cheat sheet comment on new PRs. - Add pull_request_opened.include_drafts: true so Gemini automatically performs code reviews on draft PRs upon open. --- .gemini/config.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gemini/config.yaml b/.gemini/config.yaml index cf6e5d0be1f1..7b73ea25060b 100644 --- a/.gemini/config.yaml +++ b/.gemini/config.yaml @@ -4,6 +4,7 @@ code_review: comment_severity_threshold: LOW max_review_comments: -1 pull_request_opened: - help: true + help: false summary: false code_review: true + include_drafts: true