From acb7912485f1e7efe8b0c64492640725373cc1a5 Mon Sep 17 00:00:00 2001 From: Matthew Roeschke <10647082+mroeschke@users.noreply.github.com> Date: Tue, 11 Apr 2023 16:22:01 -0700 Subject: [PATCH] CI: Fix syntax error in comment-commands.yml --- .github/workflows/comment-commands.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/comment-commands.yml b/.github/workflows/comment-commands.yml index 30dfd6acbeb7b..47c3bbc93d46e 100644 --- a/.github/workflows/comment-commands.yml +++ b/.github/workflows/comment-commands.yml @@ -12,7 +12,7 @@ jobs: issue_assign: runs-on: ubuntu-22.04 steps: - - if: !github.event.issue.pull_request && github.event.comment.body == 'take' + - if: (!github.event.issue.pull_request) && github.event.comment.body == 'take' run: | echo "Assigning issue ${{ github.event.issue.number }} to ${{ github.event.comment.user.login }}" curl -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -d '{"assignees": ["${{ github.event.comment.user.login }}"]}' https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/assignees