ci: fix e2e miniconstellation abort condition (#1728)

Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
This commit is contained in:
Paul Meyer 2023-05-04 08:16:31 +02:00 committed by GitHub
parent 56635c3993
commit b76583e4a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,7 +24,7 @@ on:
jobs: jobs:
on-failure-quit: on-failure-quit:
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
if: github.event.workflow_run.conclusion != 'success' if: github.event_name == 'workflow_run' && github.event.workflow_run.conclusion != 'success'
steps: steps:
- run: | - run: |
echo 'Release workflow failed, exiting..' echo 'Release workflow failed, exiting..'