> /dev/null and 2>&1 should be special-cased to not require permission
#94
This file contains hidden or 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: Label incoming issues | |
| on: | |
| issues: | |
| types: | |
| - reopened | |
| - opened | |
| - unlabeled | |
| permissions: | |
| issues: write | |
| jobs: | |
| label_incoming_issues: | |
| runs-on: ubuntu-latest | |
| if: github.event.action == 'opened' || github.event.action == 'reopened' | |
| steps: | |
| - run: gh issue edit "$NUMBER" --add-label "$LABELS" | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| GH_REPO: ${{ github.repository }} | |
| NUMBER: ${{ github.event.issue.number }} | |
| LABELS: triage | |
| label_more_info_issues: | |
| if: | |
| github.event.action == 'unlabeled' && github.event.label.name == | |
| 'more-info-needed' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: gh issue edit "$NUMBER" --add-label "$LABELS" | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| GH_REPO: ${{ github.repository }} | |
| NUMBER: ${{ github.event.issue.number }} | |
| LABELS: triage |