Skip to content

Commit f105eef

Browse files
authored
ENH: add trim() to github.event.comment.body on issue_assign workflow job (#60359)
add trim() to github.event.comment.body on issue_assign workflow job
1 parent 91509d2 commit f105eef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/comment-commands.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111
jobs:
1212
issue_assign:
1313
runs-on: ubuntu-22.04
14-
if: (!github.event.issue.pull_request) && github.event.comment.body == 'take'
14+
if: (!github.event.issue.pull_request) && trim(github.event.comment.body) == 'take'
1515
concurrency:
1616
group: ${{ github.actor }}-issue-assign
1717
steps:

0 commit comments

Comments
 (0)