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

[QI2-1215] Fail dependabot PR on e2e failure #32

Merged
merged 1 commit into from
Nov 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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