From e3a1586fceeb6ecb1af9e2f47525161721fcc120 Mon Sep 17 00:00:00 2001 From: wangxiyuan Date: Sat, 31 Jan 2026 10:47:38 +0800 Subject: [PATCH] [CI]Update gemini config (#6447) Update gemini config to make it more useful - vLLM version: v0.14.1 - vLLM main: https://github.com/vllm-project/vllm/commit/dc917cceb877dfd13f98c538c4c96158047d98bd Signed-off-by: wangxiyuan --- .gemini/config.yaml | 5 ++++- .gemini/styleguide.md | 51 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+), 1 deletion(-) create mode 100644 .gemini/styleguide.md diff --git a/.gemini/config.yaml b/.gemini/config.yaml index 2499d3f0..fa55cf81 100644 --- a/.gemini/config.yaml +++ b/.gemini/config.yaml @@ -1,6 +1,9 @@ # https://developers.google.com/gemini-code-assist/docs/customize-gemini-behavior-github have_fun: false # Just review the code +memory_config: + disabled: false code_review: comment_severity_threshold: HIGH # Reduce quantity of comments pull_request_opened: - summary: false # Don't summarize the PR in a separate comment + help: true # Add a help comment to the PR + summary: true # Summarize the PR in a separate comment diff --git a/.gemini/styleguide.md b/.gemini/styleguide.md new file mode 100644 index 00000000..632f02d6 --- /dev/null +++ b/.gemini/styleguide.md @@ -0,0 +1,51 @@ +# Pull Request Summary Style Guide + +## Pull Request Summary Format + +The summary should follow the format: + + ```markdown + ### What this PR does / why we need it? + + + ### Does this PR introduce _any_ user-facing change? + + + ### How was this patch tested? + + ``` + +## Pull Request Title Format + +The summary should also refresh the Pull Request Title to follow the format: + + ```txt + [Branch][Module][Action] Pull Request Title + ``` + +- Branch: The branch name where the PR is based. +- Module: The module or component being changed. It includes but is not limited to the following: + - [Attention] + - [Ops] + - [Doc] + - [Test] + - [CI] + - [Benchmark] +- Action: The action being performed. It includes but is not limited to the following: + - [BugFix] + - [Feature] + - [Misc]