We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ac1bd1 commit 2f0e72fCopy full SHA for 2f0e72f
1 file changed
.github/workflows/claude-code-review.yml
@@ -11,7 +11,9 @@ on:
11
jobs:
12
claude-review:
13
# Avoid duplicate runs: use pull_request for same-repo, pull_request_target for forks
14
+ # Skip bot PRs (dependabot, renovate, etc.) - they don't need code review
15
if: |
16
+ github.event.pull_request.user.type != 'Bot' &&
17
!(github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork) &&
18
!(github.event_name == 'pull_request_target' && !github.event.pull_request.head.repo.fork)
19
runs-on: ubuntu-latest
0 commit comments