diff --git a/.github/workflows/e2e-test-daily.yml b/.github/workflows/e2e-test-daily.yml index f9424e84d..3888b85d9 100644 --- a/.github/workflows/e2e-test-daily.yml +++ b/.github/workflows/e2e-test-daily.yml @@ -157,3 +157,16 @@ jobs: buildBuddyApiKey: ${{ secrets.BUILDBUDDY_ORG_API_KEY }} registry: ghcr.io githubToken: ${{ secrets.GITHUB_TOKEN }} + + - name: Notify about failure + if: | + failure() && + github.ref == 'refs/heads/main' && + github.event_name == 'schedule' + continue-on-error: true + uses: ./.github/actions/notify_failure + with: + projectWriteToken: ${{ secrets.PROJECT_WRITE_TOKEN }} + teamsWebhookUri: ${{ secrets.MS_TEAMS_WEBHOOK_URI }} + test: "MiniConstellation" + provider: "QEMU" diff --git a/.github/workflows/e2e-test-weekly.yml b/.github/workflows/e2e-test-weekly.yml index a7a88d944..b57bdf6b1 100644 --- a/.github/workflows/e2e-test-weekly.yml +++ b/.github/workflows/e2e-test-weekly.yml @@ -319,6 +319,19 @@ jobs: registry: ghcr.io githubToken: ${{ secrets.GITHUB_TOKEN }} + - name: Notify about failure + if: | + failure() && + github.ref == 'refs/heads/main' && + github.event_name == 'schedule' + continue-on-error: true + uses: ./.github/actions/notify_failure + with: + projectWriteToken: ${{ secrets.PROJECT_WRITE_TOKEN }} + teamsWebhookUri: ${{ secrets.MS_TEAMS_WEBHOOK_URI }} + test: "MiniConstellation" + provider: "QEMU" + e2e-windows: name: Run Windows E2E test permissions: