-
Notifications
You must be signed in to change notification settings - Fork 23
36 lines (34 loc) · 1013 Bytes
/
auto-triage.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Move labeled issue
on:
issues:
types:
- labeled
workflow_dispatch:
jobs:
move-low-priority:
if: github.event.label.name == 'Low Priority'
runs-on: ubuntu-latest
steps:
- uses: alex-page/github-project-automation-plus@v0.8.1
with:
project: Backlog
column: Low Priority
repo-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
move-normal-priority:
if: github.event.label.name == 'Normal Priority'
runs-on: ubuntu-latest
steps:
- uses: alex-page/github-project-automation-plus@v0.8.1
with:
project: Backlog
column: Normal Priority
repo-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
move-high-priority:
if: github.event.label.name == 'High Priority'
runs-on: ubuntu-latest
steps:
- uses: alex-page/github-project-automation-plus@v0.8.1
with:
project: Backlog
column: High Priority
repo-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}