mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-08-28 05:25:33 +00:00
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:
parent
84d0fb802a
commit
2470d81486
1 changed files with 4 additions and 1 deletions
5
.github/workflows/claude-code-review.yml
vendored
5
.github/workflows/claude-code-review.yml
vendored
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue