[Snyk] Upgrade @wordpress/icons from 8.4.0 to 10.10.0 #282
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: 'Update contributor feedback labels on comment' | |
on: 'issue_comment' | |
permissions: {} | |
jobs: | |
feedback: | |
if: | | |
github.actor != 'github-actions' && | |
github.actor == github.event.issue.user.login && | |
github.event.issue && | |
github.event.issue.state == 'open' && | |
contains(github.event.issue.labels.*.name, 'needs: author feedback') | |
runs-on: ubuntu-20.04 | |
permissions: | |
issues: write | |
steps: | |
- name: Add has feedback | |
uses: actions-ecosystem/action-add-labels@v1 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
labels: 'needs: triage feedback' | |
- name: remove needs feedback | |
uses: actions-ecosystem/action-remove-labels@v1 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
labels: 'needs: author feedback' | |
- name: remove stale | |
uses: actions-ecosystem/action-remove-labels@v1 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
labels: 'status: stale' |