Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

E2E tests workflow configuration modification #21

Merged
merged 2 commits into from
Feb 11, 2025
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
18 changes: 14 additions & 4 deletions .github/workflows/run-e2e-tests.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
name: E2E Test Workflow For Firehose

on:
push:
branches:
- main
- develop
pull_request_review:
types:
- submitted
schedule:
- cron: '0 0 1 * *'

jobs:
deploy-and-test:
if: github.event.review.state == 'approved'
runs-on: ubuntu-latest
permissions:
id-token: write
Expand Down Expand Up @@ -42,3 +44,11 @@ jobs:
./build_template.sh
./firehose_e2e_tests.sh ${{ matrix.test-case }}

- name: Send failure notification to Slack
if: always()
uses: ravsamhq/notify-slack-action@v1
with:
status: ${{ job.status }}
notify_when: 'failure'
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
Loading