🔨 Syntax fix in GH actions script

This commit is contained in:
Alicia Sykes 2021-12-11 23:10:19 +00:00 committed by GitHub
parent 86fc819233
commit 9503a6d81b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 7 deletions

View File

@ -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