File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -284,15 +284,23 @@ jobs:
284284 name : " ${{ matrix.python-version }} ${{ matrix.os }} ${{ matrix.name-suffix }} result images"
285285 path : ./result_images
286286
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 :
287295 - name : Create issue on failure
288296 uses : imjohnbo/issue-bot@v3
289- if : ${{ failure() && github.event_name == 'schedule' }}
290297 with :
291298 title : " [TST] Upcoming dependency test failures"
292299 body : |
293300 The weekly build with nightly wheels from numpy and pandas
294301 has failed. Check the logs for any updates that need to be
295302 made in matplotlib.
303+ https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
296304
297305 pinned : false
298306 close-previous : false
You can’t perform that action at this time.
0 commit comments