1
0
Fork 0

add final ci step

This commit is contained in:
ibizaman 2024-03-19 22:26:15 -07:00
parent 98bc6ada4f
commit b8da37f2ed

20
.github/workflows/garnix.yaml vendored Normal file
View 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')
}}