From b11ef774b49b5f811190e41f4f056c1d738e50c6 Mon Sep 17 00:00:00 2001 From: John Watson Date: Thu, 12 Dec 2024 21:06:23 +0000 Subject: [PATCH] fixup --- .github/workflows/e2e-validation.yml | 3 ++- .github/workflows/run-api-test.yml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e-validation.yml b/.github/workflows/e2e-validation.yml index e09c09fdc5..6d7dfa82df 100644 --- a/.github/workflows/e2e-validation.yml +++ b/.github/workflows/e2e-validation.yml @@ -127,7 +127,7 @@ jobs: runs-on: ubuntu-latest needs: cypress-tests environment: ${{ inputs.environment }} - if: failure() && ${{ github.ref == 'refs/heads/feat/fixup-e2e-test' }} + if: failure() #&& ${{ github.ref == 'refs/heads/feat/fixup-e2e-test' }} steps: - name: Download all artifacts uses: actions/download-artifact@v4 @@ -144,6 +144,7 @@ jobs: break fi done + exit 0 # If at least one valid failure marker is present, then page if [ "$has_artifacts" = true ]; then curl --location "${{ secrets.FIREHYDRANT_WEBHOOK_URL }}" \ diff --git a/.github/workflows/run-api-test.yml b/.github/workflows/run-api-test.yml index 39ed99763e..ca93adb4c9 100644 --- a/.github/workflows/run-api-test.yml +++ b/.github/workflows/run-api-test.yml @@ -145,7 +145,7 @@ jobs: runs-on: ubuntu-latest needs: api-test environment: ${{ inputs.environment }} - if: failure() && ${{ github.ref == 'refs/heads/main' }} + if: failure() # && ${{ github.ref == 'refs/heads/feat/fixup-e2e-test' }} steps: - name: Download all artifacts uses: actions/download-artifact@v4 @@ -162,6 +162,7 @@ jobs: break fi done + exit 0 # If at least one valid failure marker is present, then page if [ "$has_artifacts" = true ]; then curl --location "${{ secrets.FIREHYDRANT_WEBHOOK_URL }}" \