Skip to content

Commit

Permalink
add trim() to github.event.commend.body on issue_assign workflow job
Browse files Browse the repository at this point in the history
  • Loading branch information
KevsterAmp committed Nov 19, 2024
1 parent 5f23ace commit 46525c9
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 46525c9

Please sign in to comment.