mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
ci: skip e2e tests if caller was not successful (#1714)
This commit is contained in:
parent
d7a2ddd939
commit
d2cbf3dc83
2
.github/workflows/e2e-mini.yml
vendored
2
.github/workflows/e2e-mini.yml
vendored
@ -24,7 +24,7 @@ on:
|
||||
jobs:
|
||||
on-failure-quit:
|
||||
runs-on: ubuntu-22.04
|
||||
if: github.event.workflow_run.conclusion == 'failure'
|
||||
if: github.event.workflow_run.conclusion != 'success'
|
||||
steps:
|
||||
- run: |
|
||||
echo 'Release workflow failed, exiting..'
|
||||
|
4
.github/workflows/e2e-test-release.yml
vendored
4
.github/workflows/e2e-test-release.yml
vendored
@ -20,7 +20,7 @@ on:
|
||||
jobs:
|
||||
on-failure-quit:
|
||||
runs-on: ubuntu-22.04
|
||||
if: github.event.workflow_run.conclusion == 'failure'
|
||||
if: github.event.workflow_run.conclusion != 'success'
|
||||
steps:
|
||||
- run: |
|
||||
echo 'Release workflow failed, exiting..'
|
||||
@ -234,6 +234,8 @@ jobs:
|
||||
permissions:
|
||||
id-token: write
|
||||
contents: read
|
||||
checks: write
|
||||
packages: write
|
||||
uses: ./.github/workflows/e2e-upgrade.yml
|
||||
with:
|
||||
fromVersion: ${{ matrix.fromVersion }}
|
||||
|
Loading…
Reference in New Issue
Block a user