Skip to content

Commit c90635c

Browse files
authored
remove conditional on issue_comment events
1 parent c7e4f48 commit c90635c

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/add-remove-labels.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,12 @@ on:
1111

1212
issue_comment:
1313
types: [created, edited, deleted]
14-
if: |
15-
contains(github.event.comment.body, '/wip') ||
16-
contains(github.event.comment.body, '/verified') ||
17-
contains(github.event.comment.body, '/lgtm') ||
18-
contains(github.event.comment.body, '/hold')
14+
# I don't believe the conditional is supported here
15+
# if: |
16+
# contains(github.event.comment.body, '/wip') ||
17+
# contains(github.event.comment.body, '/verified') ||
18+
# contains(github.event.comment.body, '/lgtm') ||
19+
# contains(github.event.comment.body, '/hold')
1920

2021

2122
permissions:

0 commit comments

Comments
 (0)