87
87
# Define a display name:
88
88
name : ' Check for required files'
89
89
90
+ # Ensure initial reaction job has completed before running this job:
91
+ needs : [ add_initial_reaction ]
92
+
90
93
# Define the conditions under which the job should run:
91
94
if : github.event.issue.pull_request && startsWith(github.event.comment.body, '/stdlib check-files')
92
95
@@ -123,6 +126,9 @@ jobs:
123
126
# Define a display name:
124
127
name : ' Auto-fix lint errors'
125
128
129
+ # Ensure initial reaction job has completed before running this job:
130
+ needs : [ add_initial_reaction ]
131
+
126
132
# Define the conditions under which the job should run:
127
133
if : github.event.issue.pull_request && startsWith(github.event.comment.body, '/stdlib lint-autofix')
128
134
@@ -142,6 +148,9 @@ jobs:
142
148
# Define a display name:
143
149
name : ' Merge changes from develop branch into this PR'
144
150
151
+ # Ensure initial reaction job has completed before running this job:
152
+ needs : [ add_initial_reaction ]
153
+
145
154
# Define the conditions under which the job should run:
146
155
if : github.event.issue.pull_request && startsWith(github.event.comment.body, '/stdlib merge')
147
156
@@ -161,6 +170,9 @@ jobs:
161
170
# Define a display name:
162
171
name : ' Rebase this PR on top of develop branch'
163
172
173
+ # Ensure initial reaction job has completed before running this job:
174
+ needs : [ add_initial_reaction ]
175
+
164
176
# Define the conditions under which the job should run:
165
177
if : github.event.issue.pull_request && startsWith(github.event.comment.body, '/stdlib rebase')
166
178
@@ -183,6 +195,9 @@ jobs:
183
195
# Define the type of virtual host machine:
184
196
runs-on : ubuntu-latest
185
197
198
+ # Ensure initial reaction job has completed before running this job:
199
+ needs : [ add_initial_reaction ]
200
+
186
201
# Define the conditions under which the job should run:
187
202
if : github.event.issue.pull_request && startsWith(github.event.comment.body, '/stdlib help')
188
203
0 commit comments