From b8da37f2ede0207d78204d4c281c4355a714986f Mon Sep 17 00:00:00 2001 From: ibizaman Date: Tue, 19 Mar 2024 22:26:15 -0700 Subject: [PATCH] add final ci step --- .github/workflows/garnix.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/garnix.yaml diff --git a/.github/workflows/garnix.yaml b/.github/workflows/garnix.yaml new file mode 100644 index 0000000..7052000 --- /dev/null +++ b/.github/workflows/garnix.yaml @@ -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') + }}