We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba1abe3 commit e554a92Copy full SHA for e554a92
1 file changed
.github/workflows/claude-code-review.yml
@@ -84,6 +84,7 @@ jobs:
84
if: |
85
(
86
github.event_name == 'issue_comment' &&
87
+ github.event.issue.pull_request &&
88
contains(github.event.comment.body, '@claude') &&
89
!contains(github.event.comment.body, '@claude review') &&
90
@@ -94,6 +95,7 @@ jobs:
94
95
) ||
96
97
github.event_name == 'pull_request_review_comment' &&
98
+ github.event.pull_request.head.repo.full_name == github.repository &&
99
100
101
github.event.comment.author_association == 'MEMBER' ||
0 commit comments