Skip to content

Commit 8df0428

Browse files
committed
chore: allow claude label to trigger claude action
1 parent 5f8c0ee commit 8df0428

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/claude.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ jobs:
1616
(github.event_name == 'issue_comment' && contains(github.event.comment.body, '@claude')) ||
1717
(github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) ||
1818
(github.event_name == 'pull_request_review' && contains(github.event.review.body, '@claude')) ||
19-
(github.event_name == 'issues' && (contains(github.event.issue.body, '@claude') || contains(github.event.issue.title, '@claude')))
19+
(github.event_name == 'issues' && (contains(github.event.issue.body, '@claude') || contains(github.event.issue.title, '@claude'))) ||
20+
(github.event_name == 'issues' && github.event.action == 'labeled' && contains(github.event.label.name, 'claude'))
2021
runs-on: ubuntu-latest
2122
permissions:
2223
contents: write

0 commit comments

Comments
 (0)