[Feature Request]: Add ability to upload MSI files #669
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: # yamllint disable-line rule:truthy | |
issues: | |
types: | |
- opened | |
jobs: | |
label_issues_bugs: | |
if: contains(github.event.issue.title,'Bug') | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- name: Label Issues | |
uses: andymckay/labeler@5c59dabdfd4dd5bd9c6e6d255b01b9d764af4414 | |
with: | |
add-labels: 'unconfirmed-by-user' | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
label_issues_frs: | |
if: contains(github.event.issue.title,'Feature') | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- name: Label Issues | |
uses: andymckay/labeler@5c59dabdfd4dd5bd9c6e6d255b01b9d764af4414 | |
with: | |
add-labels: 'enhancement, no-priority' | |
repo-token: ${{ secrets.GITHUB_TOKEN }} |