Skip to content

Commit a024252

Browse files
authored
Replace @ invocation with / invocation (#4244)
1 parent 5dd4ca3 commit a024252

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/claude-code-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
needs.check-team-member.outputs.is-team-member == 'true' &&
3131
github.actor != 'github-actions[bot]' &&
3232
github.event.issue.pull_request &&
33-
contains(github.event.comment.body, '@claude /full-review')
33+
contains(github.event.comment.body, '/claude /full-review')
3434
runs-on: ubuntu-latest
3535
timeout-minutes: 10
3636
concurrency:

.github/workflows/claude.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ jobs:
3636
needs.check-team-member.outputs.is-team-member == 'true' &&
3737
github.actor != 'github-actions[bot]' &&
3838
(
39-
(github.event_name == 'issue_comment' && contains(github.event.comment.body, '@claude') && !contains(github.event.comment.body, '@claude /full-review')) ||
40-
(github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude') && !contains(github.event.comment.body, '@claude /full-review')) ||
41-
(github.event_name == 'pull_request_review' && contains(github.event.review.body, '@claude') && !contains(github.event.review.body, '@claude /full-review')) ||
42-
(github.event_name == 'issues' && (contains(github.event.issue.body, '@claude') || contains(github.event.issue.title, '@claude')))
39+
(github.event_name == 'issue_comment' && contains(github.event.comment.body, '/claude') && !contains(github.event.comment.body, '/claude /full-review')) ||
40+
(github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '/claude') && !contains(github.event.comment.body, '/claude /full-review')) ||
41+
(github.event_name == 'pull_request_review' && contains(github.event.review.body, '/claude') && !contains(github.event.review.body, '/claude /full-review')) ||
42+
(github.event_name == 'issues' && (contains(github.event.issue.body, '/claude') || contains(github.event.issue.title, '/claude')))
4343
)
4444
runs-on: ubuntu-latest
4545
timeout-minutes: 10

0 commit comments

Comments
 (0)