-
Notifications
You must be signed in to change notification settings - Fork 23
50 lines (45 loc) · 1.75 KB
/
labeled_issue.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Move labeled issues on project board
on:
issues:
types: [labeled]
jobs:
move_under_development_issues:
name: Move "under development" issues
runs-on: ubuntu-latest
steps:
- uses: konradpabjan/[email protected]
with:
action-token: "${{ secrets.PROJECT_AUTOMATION }}"
project-url: "https://github.com/INSPIRE-MIF/helpdesk-validator/projects/1"
column-name: "In progress"
label-name: "under development"
move_ready_for_testing_issues:
name: Move "ready for testings" issues
runs-on: ubuntu-latest
steps:
- uses: konradpabjan/[email protected]
with:
action-token: "${{ secrets.PROJECT_AUTOMATION }}"
project-url: "https://github.com/INSPIRE-MIF/helpdesk-validator/projects/1"
column-name: "Staging: for acceptance"
label-name: "ready for testing"
move_solved_issues:
name: Move "solved" issues
runs-on: ubuntu-latest
steps:
- uses: konradpabjan/[email protected]
with:
action-token: "${{ secrets.PROJECT_AUTOMATION }}"
project-url: "https://github.com/INSPIRE-MIF/helpdesk-validator/projects/1"
column-name: "Staging: in release planning"
label-name: "solved"
move_deployed_in_reference_validator_issues:
name: Move "deployed in reference validator" issues
runs-on: ubuntu-latest
steps:
- uses: konradpabjan/[email protected]
with:
action-token: "${{ secrets.PROJECT_AUTOMATION }}"
project-url: "https://github.com/INSPIRE-MIF/helpdesk-validator/projects/1"
column-name: "Production: latest release"
label-name: "deployed in reference validator"