We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba025e5 commit 6211707Copy full SHA for 6211707
.github/workflows/issue-comment.yml
@@ -19,8 +19,8 @@ jobs:
19
shell: bash
20
run: |
21
gh issue edit $ISSUE_NUMBER --repo $REPOSITORY_NAME --remove-label "pending-community-response"
22
- - name: Add pending-maintainer-response when new community comment received
23
- if: ${{ !contains(fromJSON('["MEMBER", "OWNER"]'), github.event.comment.author_association) }}
+ - name: Add pending-maintainer-response when new community comment received on open issues
+ if: ${{ !contains(fromJSON('["MEMBER", "OWNER"]'), github.event.comment.author_association) && github.event.issue.state == 'open' }}
24
25
26
gh issue edit $ISSUE_NUMBER --repo $REPOSITORY_NAME --add-label "pending-maintainer-response"
0 commit comments