Winget is not up to date #17
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: Label Issues | |
on: | |
issues: | |
types: [opened, edited] | |
permissions: | |
contents: read | |
jobs: | |
label-component: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Parse issue form | |
uses: stefanbuck/github-issue-parser@v3 | |
id: issue-parser | |
with: | |
template-path: .github/ISSUE_TEMPLATE/bug_report.yaml | |
- name: Set issue labels | |
uses: redhat-plumbers-in-action/advanced-issue-labeler@v3 | |
with: | |
issue-form: ${{ steps.issue-parser.outputs.jsonString }} | |
token: ${{ secrets.GITHUB_TOKEN }} |