We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4526a7b commit a2db5e1Copy full SHA for a2db5e1
.github/workflows/acceptance.yml
@@ -124,3 +124,12 @@ jobs:
124
opentofu-version:
125
- '1.6.*'
126
cloudstack-version: ${{ fromJson(needs.prepare-matrix.outputs.cloudstack-versions) }}
127
+
128
+ all-jobs-passed: # Will succeed if it is skipped
129
+ runs-on: ubuntu-latest
130
+ needs: [acceptance-terraform, acceptance-opentofu]
131
+ # Only run if any of the previous jobs failed
132
+ if: ${{ failure() }}
133
+ steps:
134
+ - name: Previous jobs fails
135
+ run: exit 1
0 commit comments