From 0564428d69da47381bbcc96b2dba173ccfa34189 Mon Sep 17 00:00:00 2001 From: GeWuYou <95328647+GeWuYou@users.noreply.github.com> Date: Tue, 7 Apr 2026 08:59:28 +0800 Subject: [PATCH] =?UTF-8?q?chore(config):=20=E6=9B=B4=E6=96=B0=20CodeRabbi?= =?UTF-8?q?t=20=E9=85=8D=E7=BD=AE=E4=BB=A5=E4=BC=98=E5=8C=96=E4=BB=A3?= =?UTF-8?q?=E7=A0=81=E5=AE=A1=E6=9F=A5=E8=AE=BE=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 添加 YAML 语言服务器 schema 指定 - 设置语言为简体中文 - 配置审查参数包括高阶总结、状态展示及详细问题显示 - 开启请求修改工作流 - 配置工具与 GitHub 检查功能 - 设置超时时间为 90 秒 - 启用自动审查并排除草稿 PR - 开启聊天自动回复功能 --- .coderabbit.yaml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/.coderabbit.yaml b/.coderabbit.yaml index 6e2d318b..87fff182 100644 --- a/.coderabbit.yaml +++ b/.coderabbit.yaml @@ -1,5 +1,21 @@ +# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json +language: "zh-CN" +early_access: false + reviews: + profile: "balanced" # 比 chill 稍微严格一点,更适合代码质量 + request_changes_workflow: true # 有问题时可以直接 request changes + high_level_summary: true # PR 总体总结 + review_status: true # review 结果状态 + review_details: true # 展示具体问题 + poem: false # 关闭诗歌(基本没人用) tools: github-checks: enabled: true - timeout_ms: 90000 \ No newline at end of file + timeout_ms: 90000 + auto_review: + enabled: true + drafts: false # draft PR 不 review + +chat: + auto_reply: true