From 521546fc10486dd449041a71c527421902a9b6b9 Mon Sep 17 00:00:00 2001 From: Adrian Stobbe Date: Mon, 22 Jan 2024 17:41:11 +0100 Subject: [PATCH] test --- .github/workflows/e2e-test-daily.yml | 4 +--- .github/workflows/e2e-test-provider-example.yml | 9 +++++---- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/e2e-test-daily.yml b/.github/workflows/e2e-test-daily.yml index 2a94d260fb..872f293bb3 100644 --- a/.github/workflows/e2e-test-daily.yml +++ b/.github/workflows/e2e-test-daily.yml @@ -160,9 +160,7 @@ jobs: - name: Notify about failure if: | - failure() && - github.ref == 'refs/heads/main' && - github.event_name == 'schedule' + failure() continue-on-error: true uses: ./.github/actions/notify_e2e_failure with: diff --git a/.github/workflows/e2e-test-provider-example.yml b/.github/workflows/e2e-test-provider-example.yml index 423865a9c7..f8a0c555ae 100644 --- a/.github/workflows/e2e-test-provider-example.yml +++ b/.github/workflows/e2e-test-provider-example.yml @@ -72,6 +72,9 @@ jobs: with: ref: ${{ inputs.ref || github.head_ref }} + - name: Fail workflow + run: exit 1 + - name: Get Latest Image id: find-latest-image uses: ./.github/actions/find_latest_image @@ -436,12 +439,10 @@ jobs: - name: Notify about failure if: | - failure() && - github.ref == 'refs/heads/main' && - github.event_name == 'schedule' + failure() continue-on-error: true uses: ./.github/actions/notify_e2e_failure with: projectWriteToken: ${{ secrets.PROJECT_WRITE_TOKEN }} - test: "terraform-provider-example" + test: "terraform provider example" provider: ${{ inputs.cloudProvider }}