Skip to content
This repository has been archived by the owner on Feb 4, 2025. It is now read-only.

Commit

Permalink
[QI2-1215] Fail dependabot PR on e2e failure
Browse files Browse the repository at this point in the history
  • Loading branch information
oschusler committed Nov 26, 2024
1 parent c10f844 commit 58f9b69
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
run: tox -e test
e2e-test:
name: End to End testing
needs: [ lint, unit-test ]
needs: lint
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -86,7 +86,7 @@ jobs:
complete:
# see https://github.community/t/status-check-for-a-matrix-jobs/127354/7
name: Report status
needs: [lint, unit-test]
needs: [lint, unit-test, e2e-test]
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
Expand All @@ -102,7 +102,7 @@ jobs:
run: exit 1
auto-merge-dependabot:
name: Auto merge dependabot PR
needs: [lint, unit-test]
needs: complete
if: ${{ (github.event_name == 'pull_request') && (github.actor == 'dependabot[bot]') }}
runs-on: ubuntu-latest
permissions:
Expand Down

0 comments on commit 58f9b69

Please sign in to comment.