Fix status checks in CI workflow

Signed-off-by: Keith Battocchi <kebatt@microsoft.com>
This commit is contained in:
Keith Battocchi 2023-03-21 00:34:48 -04:00 коммит произвёл Keith Battocchi
Родитель 8b7fe33860
Коммит c39cc10116
1 изменённых файлов: 2 добавлений и 2 удалений

4
.github/workflows/ci.yml поставляемый
Просмотреть файл

@ -224,7 +224,7 @@ jobs:
steps:
- run: exit 1
name: At least one check failed or was cancelled
if: ${{ !(success()) }}
if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }}
- run: exit 0
name: All checks passed
if: ${{ success() }}
if: ${{ !(contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')) }}