We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0197736 commit 0806304Copy full SHA for 0806304
.github/workflows/run-e2e-tests.yml
@@ -166,8 +166,9 @@ jobs:
166
poetry run python -m unittest -c -v
167
168
batch-e2e-tests:
169
- needs: [e2e-tests]
170
- if: ${{ !cancelled() && jobs.wait-for-deployment.result == 'success' }}
+ needs: [wait-for-deployment, e2e-tests]
+ # Only actually depend on wait-for-deployment, but run after e2e-tests
171
+ if: ${{ !cancelled() && needs.wait-for-deployment.result == 'success' }}
172
runs-on: ubuntu-latest
173
environment: ${{ inputs.environment }}
174
steps:
0 commit comments