Electron 28-based Testing Release - report of compatibility #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Issue Commented | |
on: | |
issue_comment: | |
types: | |
- created | |
permissions: | |
contents: read | |
jobs: | |
issue-commented: | |
name: Remove blocked/need-repro on comment | |
if: ${{ contains(github.event.issue.labels.*.name, 'blocked/need-repro') && !contains(fromJSON('["MEMBER", "OWNER"]'), github.event.comment.author_association) }} | |
permissions: | |
issues: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Remove label | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
ISSUE_URL: ${{ github.event.issue.html_url }} | |
run: | | |
gh issue edit $ISSUE_URL --remove-label 'blocked/need-repro' |