Skip to content

Commit

Permalink
ENH: add trim() to github.event.comment.body on issue_assign workflow…
Browse files Browse the repository at this point in the history
… job (pandas-dev#60359)

add trim() to github.event.comment.body on issue_assign workflow job
  • Loading branch information
KevsterAmp authored Nov 21, 2024
1 parent 91509d2 commit f105eef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/comment-commands.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:
jobs:
issue_assign:
runs-on: ubuntu-22.04
if: (!github.event.issue.pull_request) && github.event.comment.body == 'take'
if: (!github.event.issue.pull_request) && trim(github.event.comment.body) == 'take'
concurrency:
group: ${{ github.actor }}-issue-assign
steps:
Expand Down

0 comments on commit f105eef

Please sign in to comment.