32
32
# Define a job for adding an initial reaction:
33
33
add_initial_reaction :
34
34
35
+ # Define a display name:
36
+ name : ' Add initial reaction'
37
+
35
38
# Define the type of virtual host machine:
36
39
runs-on : ubuntu-latest
37
40
81
84
# Define a job for checking for required files:
82
85
check_files :
83
86
87
+ # Define a display name:
88
+ name : ' Check for required files'
89
+
84
90
# Define the conditions under which the job should run:
85
91
if : github.event.issue.pull_request && startsWith(github.event.comment.body, '/stdlib check-files')
86
92
95
101
# Define a job for updating copyright header years:
96
102
update_copyright_years :
97
103
104
+ # Define a display name:
105
+ name : ' Update copyright header years'
106
+
98
107
# Define the conditions under which the job should run:
99
108
if : github.event.issue.pull_request && startsWith(github.event.comment.body, '/stdlib update-copyright-years')
100
109
@@ -111,6 +120,9 @@ jobs:
111
120
# Define a job for auto-fixing lint errors:
112
121
fix_lint_errors :
113
122
123
+ # Define a display name:
124
+ name : ' Auto-fix lint errors'
125
+
114
126
# Define the conditions under which the job should run:
115
127
if : github.event.issue.pull_request && startsWith(github.event.comment.body, '/stdlib lint-autofix')
116
128
@@ -127,6 +139,9 @@ jobs:
127
139
# Define a job for merging develop branch:
128
140
merge_develop :
129
141
142
+ # Define a display name:
143
+ name : ' Merge changes from develop branch into this PR'
144
+
130
145
# Define the conditions under which the job should run:
131
146
if : github.event.issue.pull_request && startsWith(github.event.comment.body, '/stdlib merge')
132
147
@@ -143,6 +158,9 @@ jobs:
143
158
# Define a job for rebasing on develop branch:
144
159
rebase_develop :
145
160
161
+ # Define a display name:
162
+ name : ' Rebase this PR on top of develop branch'
163
+
146
164
# Define the conditions under which the job should run:
147
165
if : github.event.issue.pull_request && startsWith(github.event.comment.body, '/stdlib rebase')
148
166
@@ -160,7 +178,7 @@ jobs:
160
178
help :
161
179
162
180
# Define a display name:
163
- name : ' Help '
181
+ name : ' Print a list of available slash commands '
164
182
165
183
# Define the type of virtual host machine:
166
184
runs-on : ubuntu-latest
@@ -194,6 +212,9 @@ jobs:
194
212
# Define a job for removing the in-progress label:
195
213
remove_progress_label :
196
214
215
+ # Define a display name:
216
+ name : ' Remove in-progress label'
217
+
197
218
# Define the type of virtual host machine:
198
219
runs-on : ubuntu-latest
199
220
0 commit comments