Compare commits

...

2 Commits

Author SHA1 Message Date
Sebastian Ullrich
b20f4208c2 try cancellation 2024-03-15 11:04:50 +01:00
Sebastian Ullrich
3a726a2ab7 chore: CI: mark "Build matrix complete" as cancelled if builds cancelled 2024-03-15 11:02:18 +01:00

View File

@@ -448,9 +448,10 @@ jobs:
name: Build matrix complete
runs-on: ubuntu-latest
needs: build
if: ${{ always() }}
# mark as merely cancelled not failed if builds are cancelled
if: ${{ !cancelled() }}
steps:
- if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')
- if: contains(needs.*.result, 'failure')
uses: actions/github-script@v7
with:
script: |