diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index a013d986bd..4b3d97a7af 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -389,10 +389,9 @@ jobs: parallel-finished: true carryforward: "api,frontend,print,pdf" fail-on-error: false - - ci-passed-event: - name: 'Send out CI success event' - if: github.event_name == 'push' && (github.event.pull_request && github.event.pull_request.number) + + workflow-success: + name: workflow-success needs: - api-cs-check - frontend-eslint @@ -403,6 +402,15 @@ jobs: - print-tests - e2e-tests-run runs-on: ubuntu-latest + steps: + - run: exit 0 + + ci-passed-event: + name: 'Send out CI success event' + if: github.event_name == 'push' && (github.event.pull_request && github.event.pull_request.number) + needs: + - workflow-success + runs-on: ubuntu-latest steps: - uses: peter-evans/repository-dispatch@bf47d102fdb849e755b0b0023ea3e81a44b6f570 # v2 with: