Skip to content

Commit 15c39fa

Browse files
authored
Improve int workflow failure handling (cloudfoundry#3551)
1 parent 54210c7 commit 15c39fa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/tests-integration.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ jobs:
103103
needs:
104104
- get-sha
105105
- set-env-name
106-
if: >
107-
${{ always() &&
106+
if: ${{
107+
always() &&
108108
needs.set-env-name.result == 'success' &&
109109
(github.event_name != 'workflow_dispatch' || inputs.workflow == 'all' ||
110110
inputs.workflow == 'run-integration-tests-cf-env') }}
@@ -121,8 +121,8 @@ jobs:
121121
needs:
122122
- get-sha
123123
- set-env-name
124-
if: >
125-
${{ always() &&
124+
if: ${{
125+
always() &&
126126
needs.set-env-name.result == 'success' &&
127127
(github.event_name != 'workflow_dispatch' || inputs.workflow == 'all' ||
128128
inputs.workflow == 'run-integration-tests-cf-env-with-client-creds') }}

0 commit comments

Comments
 (0)