We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4a5c80c + 7e11f18 commit 8f7b03fCopy full SHA for 8f7b03f
1 file changed
.github/workflows/claude-code-review.yml
@@ -12,6 +12,12 @@ on:
12
13
jobs:
14
claude-review:
15
+ # Skip on Dependabot PRs: such PRs may modify this workflow file (e.g. bumping
16
+ # the actions/checkout SHA), which makes claude-code-action's OIDC token exchange
17
+ # fail with "Workflow validation failed" because the workflow no longer matches the
18
+ # version on the default branch. Skipping avoids that expected, unavoidable failure.
19
+ if: github.actor != 'dependabot[bot]'
20
+
21
# Optional: Filter by PR author
22
# if: |
23
# github.event.pull_request.user.login == 'external-contributor' ||
0 commit comments