File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 3030jobs :
3131 backend-tests :
3232 runs-on : ubuntu-latest
33+ if : ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }}
3334 steps :
3435 - name : Checkout code
3536 uses : actions/checkout@v4
6869
6970 publish-report :
7071 runs-on : ubuntu-latest
71- if : always()
72+ if : always() && needs.backend-tests.result != 'skipped'
7273 needs : backend-tests
7374 steps :
7475 - uses : actions/checkout@v4
Original file line number Diff line number Diff line change 3030jobs :
3131 integration-tests :
3232 runs-on : ubuntu-latest
33+ if : ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }}
3334 defaults :
3435 run :
3536 working-directory : tests/govtool-frontend/playwright
@@ -108,7 +109,7 @@ jobs:
108109
109110 publish-report :
110111 runs-on : ubuntu-latest
111- if : always()
112+ if : always() && needs.integration-tests.result != 'skipped'
112113 needs : integration-tests
113114 steps :
114115 - uses : actions/checkout@v4
You can’t perform that action at this time.
0 commit comments