From af406961d03cc9cbe3ad8db5e147fde49b89ccd9 Mon Sep 17 00:00:00 2001 From: ibizaman Date: Thu, 15 Aug 2024 05:56:43 +0200 Subject: [PATCH] comment out final results job for now --- .github/workflows/garnix.yaml | 42 ++++++++++++++++++----------------- 1 file changed, 22 insertions(+), 20 deletions(-) diff --git a/.github/workflows/garnix.yaml b/.github/workflows/garnix.yaml index 7052000..4304da4 100644 --- a/.github/workflows/garnix.yaml +++ b/.github/workflows/garnix.yaml @@ -1,20 +1,22 @@ -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') - }} +# Leaving commented because it does not work. +# +# 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') +# }}