add final ci step
This commit is contained in:
parent
98bc6ada4f
commit
b8da37f2ed
1 changed files with 20 additions and 0 deletions
20
.github/workflows/garnix.yaml
vendored
Normal file
20
.github/workflows/garnix.yaml
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
name: "Final Results"
|
||||
|
||||
on:
|
||||
check_suite:
|
||||
types: [completed]
|
||||
|
||||
jobs:
|
||||
results:
|
||||
name: Final Results
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: echo
|
||||
- run: exit 1
|
||||
# see https://stackoverflow.com/a/67532120/4907315
|
||||
if: >-
|
||||
${{
|
||||
contains(needs.*.result, 'failure')
|
||||
|| contains(needs.*.result, 'cancelled')
|
||||
|| contains(needs.*.result, 'skipped')
|
||||
}}
|
Loading…
Add table
Reference in a new issue