From 59c3215296537cb0bcb2b5b9b2ebe903e05a9548 Mon Sep 17 00:00:00 2001 From: Christian Byrne Date: Sat, 28 Feb 2026 23:29:21 -0800 Subject: [PATCH] fix: skip CodeRabbit reviews on bot and release PRs (#9279) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Problem CodeRabbit is reviewing release and backport PRs created by bots (e.g. [#9264](https://github.com/Comfy-Org/ComfyUI_frontend/pull/9264)), leaving unnecessary review comments. ## Solution Add ignore rules to `.coderabbit.yaml`: - **`ignore_usernames`**: `comfy-pr-bot`, `github-actions` — skips reviews on PRs authored by these bot accounts - **`ignore_title_keywords`**: `[release]`, `[backport` — skips reviews on release and backport PRs by title ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-9279-fix-skip-CodeRabbit-reviews-on-bot-and-release-PRs-3146d73d3650814c9ebae0d08acbafd6) by [Unito](https://www.unito.io) --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- .coderabbit.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.coderabbit.yaml b/.coderabbit.yaml index d101998e22..5b3ec34b3f 100644 --- a/.coderabbit.yaml +++ b/.coderabbit.yaml @@ -5,3 +5,10 @@ reviews: high_level_summary: false auto_review: drafts: true + ignore_title_keywords: + - '[release]' + - '[backport' + ignore_usernames: + - comfy-pr-bot + - github-actions + - github-actions[bot]