comment out final results job for now
This commit is contained in:
parent
9d0b56c6b8
commit
af406961d0
1 changed files with 22 additions and 20 deletions
42
.github/workflows/garnix.yaml
vendored
42
.github/workflows/garnix.yaml
vendored
|
@ -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')
|
||||
# }}
|
||||
|
|
Loading…
Reference in a new issue