Skip to content

Commit ae42c66

Browse files
committed
better names
1 parent 579a8cb commit ae42c66

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/project-automation.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ on:
1111
jobs:
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
@@ -35,6 +36,7 @@ jobs:
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'
@@ -54,6 +56,7 @@ jobs:
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'
@@ -75,6 +78,7 @@ jobs:
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'

0 commit comments

Comments
 (0)