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 13:42:02 +02:00 committed by GitHub
parent 6b34f6875e
commit 94d5b251f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,7 +24,7 @@ on:
jobs:
on-failure-quit:
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:
- run: |
echo 'Release workflow failed, exiting..'