File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 1111jobs :
1212 # Check if PR is in project
1313 check_project :
14+ name : Check if PR is in project
1415 runs-on : ubuntu-latest
1516 steps :
1617 - name : Check if PR is in project
3536
3637 # When a PR is a draft, it should go into "In Progress"
3738 mark_as_in_progress :
39+ name : " Mark as In Progress"
3840 needs : check_project
3941 if : |
4042 needs.check_project.outputs.is_in_project == '1'
5456
5557 # When a PR is not a draft, it should go into "In Review"
5658 mark_as_in_review :
59+ name : " Mark as In Review"
5760 needs : check_project
5861 if : |
5962 needs.check_project.outputs.is_in_project == '1'
7578 # By default, closed PRs go into "Ready for Release"
7679 # But if they are closed without merging, they should go into "Done"
7780 mark_as_done :
81+ name : " Mark as Done"
7882 needs : check_project
7983 if : |
8084 needs.check_project.outputs.is_in_project == '1'
You can’t perform that action at this time.
0 commit comments