File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed
Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 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 :
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 1414 runs-on : ubuntu-latest
1515 if : |
1616 github.event.issue.pull_request &&
17- contains(github.event.comment.body, '@ codex') &&
17+ contains(github.event.comment.body, '/ codex') &&
1818 github.actor != 'github-actions[bot]'
1919 outputs :
2020 is-team-member : ${{ steps.check.outputs.is-member }}
6262 id : mode
6363 run : |
6464 COMMENT="${{ github.event.comment.body }}"
65- if echo "$COMMENT" | grep -qi '@ codex /full-review'; then
65+ if echo "$COMMENT" | grep -qi '/ codex /full-review'; then
6666 echo "mode=full-review" >> "$GITHUB_OUTPUT"
6767 else
6868 echo "mode=comment" >> "$GITHUB_OUTPUT"
@@ -157,4 +157,4 @@ jobs:
157157 repo: context.repo.repo,
158158 issue_number: context.issue.number,
159159 body
160- });
160+ });
You can’t perform that action at this time.
0 commit comments