master
yml 21 lines 440 Bytes
Raw
1 name: Process new issue
2
3 on:
4 workflow_dispatch :
5 issues:
6 types: [opened]
7
8 jobs:
9 wti:
10 name: Run wti
11 runs-on: windows-2022
12 permissions:
13 issues: write
14 steps:
15 - name: Checkout repo
16 uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
17
18 - uses: ./.github/actions/triage
19 with:
20 issue: "${{ github.event.issue.number }}"
21 token: ${{ secrets.GITHUB_TOKEN }}