ACS-3750 Fix cancelled workflow condition (#1768)

This commit is contained in:
Damian Ujma
2023-02-23 16:11:09 +01:00
committed by GitHub
parent 0a75cbbc67
commit 90de678d7d

View File

@@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
needs: [run_ci]
if: >
!failure() &&
!(failure() || cancelled()) &&
!contains(github.event.head_commit.message, '[no release]') &&
github.event_name != 'pull_request'
steps:
@@ -55,7 +55,7 @@ jobs:
runs-on: ubuntu-latest
needs: [push_to_nexus]
if: >
!failure() &&
!(failure() || cancelled()) &&
!contains(github.event.head_commit.message, '[no downstream]') &&
github.event_name != 'pull_request'
steps: