Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
johnrwatson committed Dec 12, 2024
1 parent 2f67f3d commit b11ef77
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/e2e-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}" \
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/run-api-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}" \
Expand Down

0 comments on commit b11ef77

Please sign in to comment.