We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af48cd0 commit 8351cb2Copy full SHA for 8351cb2
1 file changed
.github/workflows/claude-code-review.yml
@@ -13,8 +13,10 @@ on:
13
jobs:
14
claude-review:
15
if: |
16
- !contains(github.event.pull_request.head.commit.author.name, 'Claude') &&
17
- !contains(github.event.pull_request.head.commit.author.email, 'noreply@anthropic.com') &&
+ github.actor != 'github-actions[bot]' &&
+ github.actor != 'claude-code[bot]' &&
18
+ github.actor != 'claude[bot]' &&
19
+ github.actor != 'claude' &&
20
github.event.pull_request.head.commit.parents[1] == null
21
22
runs-on: ubuntu-latest
0 commit comments