Nightly Dispatcher #47
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Nightly Dispatcher | ||
on: | ||
# Important note about scheduled workflows: | ||
# Notifications for scheduled workflows are sent to the user who last modified the cron syntax in the workflow file. | ||
schedule: | ||
- cron: "0 2 * * *" | ||
jobs: | ||
backward-compatibility: | ||
uses: ./.github/workflows/backward-compatibility.yml | ||
Check failure on line 11 in .github/workflows/nightly-dispatcher.yml GitHub Actions / Nightly DispatcherInvalid workflow file
|
||
docker-builds: | ||
uses: ./.github/workflows/docker-builds.yml | ||
aggregator-stress-test: | ||
uses: ./.github/workflows/aggregator-stress-test.yml | ||
test-client: | ||
uses: ./.github/workflows/test-client.yml | ||
notify-on-failure: | ||
runs-on: ubuntu-22.04 | ||
needs: [docker-builds, aggregator-stress-test, test-client] | ||
if: failure() | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: Make script executable | ||
shell: bash | ||
run: | | ||
chmod +x ./.github/workflows/scripts/notify-nightly-failure.js | ||
- name: Send failure notification by email | ||
uses: peter-evans/sendgrid-action@v1 | ||
env: | ||
SENDGRID_API_KEY: ${{ secrets.SENDGRID_API_KEY }} | ||
SCRIPT_FILEPATH: ./.github/workflows/scripts/notify-nightly-failure.js | ||
SENDGRID_MAIL_FROM: ${{ secrets.CI_NOTIFICATION_EMAIL_FROM }} | ||
SENDGRID_MAIL_TO: ${{ secrets.CI_NOTIFICATION_EMAIL_TO }} |