From 2470d81486d0812317012ca75070e0eafd60e1ed Mon Sep 17 00:00:00 2001 From: Prasanna721 <106952318+Prasanna721@users.noreply.github.com> Date: Tue, 10 Mar 2026 16:53:56 +0000 Subject: [PATCH] skip claude review for bot PRs (#779) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Skip code review workflow when PR is created by Graphite or Dependabot bots — they were triggering the review, failing, and showing a false red X. --- .github/workflows/claude-code-review.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/claude-code-review.yml b/.github/workflows/claude-code-review.yml index 46cf3d6b..9da46700 100644 --- a/.github/workflows/claude-code-review.yml +++ b/.github/workflows/claude-code-review.yml @@ -6,7 +6,10 @@ on: jobs: claude-review: - if: github.event.pull_request.draft == false + if: | + github.event.pull_request.draft == false && + github.actor != 'graphite-app[bot]' && + github.actor != 'dependabot[bot]' runs-on: ubuntu-latest permissions: