skip claude review for bot PRs (#779)

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.
This commit is contained in:
Prasanna721 2026-03-10 16:53:56 +00:00
parent 84d0fb802a
commit 2470d81486

View file

@ -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: