Skip to content

Commit 667ac1a

Browse files
committed
build: add display names
1 parent 4221136 commit 667ac1a

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

.github/workflows/slash_commands.yml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ jobs:
3232
# Define a job for adding an initial reaction:
3333
add_initial_reaction:
3434

35+
# Define a display name:
36+
name: 'Add initial reaction'
37+
3538
# Define the type of virtual host machine:
3639
runs-on: ubuntu-latest
3740

@@ -81,6 +84,9 @@ jobs:
8184
# Define a job for checking for required files:
8285
check_files:
8386

87+
# Define a display name:
88+
name: 'Check for required files'
89+
8490
# Define the conditions under which the job should run:
8591
if: github.event.issue.pull_request && startsWith(github.event.comment.body, '/stdlib check-files')
8692

@@ -95,6 +101,9 @@ jobs:
95101
# Define a job for updating copyright header years:
96102
update_copyright_years:
97103

104+
# Define a display name:
105+
name: 'Update copyright header years'
106+
98107
# Define the conditions under which the job should run:
99108
if: github.event.issue.pull_request && startsWith(github.event.comment.body, '/stdlib update-copyright-years')
100109

@@ -111,6 +120,9 @@ jobs:
111120
# Define a job for auto-fixing lint errors:
112121
fix_lint_errors:
113122

123+
# Define a display name:
124+
name: 'Auto-fix lint errors'
125+
114126
# Define the conditions under which the job should run:
115127
if: github.event.issue.pull_request && startsWith(github.event.comment.body, '/stdlib lint-autofix')
116128

@@ -127,6 +139,9 @@ jobs:
127139
# Define a job for merging develop branch:
128140
merge_develop:
129141

142+
# Define a display name:
143+
name: 'Merge changes from develop branch into this PR'
144+
130145
# Define the conditions under which the job should run:
131146
if: github.event.issue.pull_request && startsWith(github.event.comment.body, '/stdlib merge')
132147

@@ -143,6 +158,9 @@ jobs:
143158
# Define a job for rebasing on develop branch:
144159
rebase_develop:
145160

161+
# Define a display name:
162+
name: 'Rebase this PR on top of develop branch'
163+
146164
# Define the conditions under which the job should run:
147165
if: github.event.issue.pull_request && startsWith(github.event.comment.body, '/stdlib rebase')
148166

@@ -160,7 +178,7 @@ jobs:
160178
help:
161179

162180
# Define a display name:
163-
name: 'Help'
181+
name: 'Print a list of available slash commands'
164182

165183
# Define the type of virtual host machine:
166184
runs-on: ubuntu-latest
@@ -194,6 +212,9 @@ jobs:
194212
# Define a job for removing the in-progress label:
195213
remove_progress_label:
196214

215+
# Define a display name:
216+
name: 'Remove in-progress label'
217+
197218
# Define the type of virtual host machine:
198219
runs-on: ubuntu-latest
199220

0 commit comments

Comments
 (0)