From 9503a6d81b8d5854497b8dec5d59376de52c1890 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sat, 11 Dec 2021 23:10:19 +0000 Subject: [PATCH] :hammer: Syntax fix in GH actions script --- .github/workflows/manage-pending-labels.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/manage-pending-labels.yml b/.github/workflows/manage-pending-labels.yml index b264f76a..13f968f9 100644 --- a/.github/workflows/manage-pending-labels.yml +++ b/.github/workflows/manage-pending-labels.yml @@ -19,13 +19,7 @@ jobs: add-awaiting-author: runs-on: ubuntu-latest - if: >- - ${{ - !github.event.issue.pull_request - && github.event.comment.author_association != 'COLLABORATOR' - && github.event.comment.author_association != 'OWNER' - && github.event.issue.state === 'open' - }} + if: ${{!github.event.issue.pull_request && github.event.comment.author_association != 'COLLABORATOR' && github.event.comment.author_association != 'OWNER' && github.event.issue.state === 'open' }} steps: - name: Add Awaiting Author labels when Updated uses: actions-cool/issues-helper@v2