aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/issues.yml
blob: 0c8b859bb7b639500d30de93ab439f767f073564 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
on:
  issues:
    types: [opened, labeled]
name: Issues
jobs:
  issueHandler:
    name: IssueHandler
    runs-on: windows-latest
    steps:
      - uses: actions/checkout@main
      - name: IssueHandler
        uses: ScoopInstaller/GithubActions@main
        if: github.event.action == 'opened' || (github.event.action == 'labeled' && contains(github.event.issue.labels.*.name, 'verify'))
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}