File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 11
11
jobs :
12
12
# Check if PR is in project
13
13
check_project :
14
+ name : Check if PR is in project
14
15
runs-on : ubuntu-latest
15
16
steps :
16
17
- name : Check if PR is in project
35
36
36
37
# When a PR is a draft, it should go into "In Progress"
37
38
mark_as_in_progress :
39
+ name : " Mark as In Progress"
38
40
needs : check_project
39
41
if : |
40
42
needs.check_project.outputs.is_in_project == '1'
54
56
55
57
# When a PR is not a draft, it should go into "In Review"
56
58
mark_as_in_review :
59
+ name : " Mark as In Review"
57
60
needs : check_project
58
61
if : |
59
62
needs.check_project.outputs.is_in_project == '1'
75
78
# By default, closed PRs go into "Ready for Release"
76
79
# But if they are closed without merging, they should go into "Done"
77
80
mark_as_done :
81
+ name : " Mark as Done"
78
82
needs : check_project
79
83
if : |
80
84
needs.check_project.outputs.is_in_project == '1'
You can’t perform that action at this time.
0 commit comments