File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -284,15 +284,23 @@ jobs:
284
284
name : " ${{ matrix.python-version }} ${{ matrix.os }} ${{ matrix.name-suffix }} result images"
285
285
path : ./result_images
286
286
287
+ # Separate dependent job to only upload one issue from the matrix of jobs
288
+ create-issue :
289
+ runs-on : ubuntu-latest
290
+ needs : [test]
291
+ if : ${{ failure() && github.event_name == 'schedule' }}
292
+ name : " Create issue on failure"
293
+
294
+ steps :
287
295
- name : Create issue on failure
288
296
uses : imjohnbo/issue-bot@v3
289
- if : ${{ failure() && github.event_name == 'schedule' }}
290
297
with :
291
298
title : " [TST] Upcoming dependency test failures"
292
299
body : |
293
300
The weekly build with nightly wheels from numpy and pandas
294
301
has failed. Check the logs for any updates that need to be
295
302
made in matplotlib.
303
+ https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
296
304
297
305
pinned : false
298
306
close-previous : false
You can’t perform that action at this time.
0 commit comments