Skip to content

Commit

Permalink
add final ci step
Browse files Browse the repository at this point in the history
  • Loading branch information
ibizaman committed Mar 20, 2024
1 parent 98bc6ad commit b8da37f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/garnix.yaml
Original file line number Diff line number Diff line change
@@ -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')
}}

0 comments on commit b8da37f

Please sign in to comment.