Skip to content

Nightly Dispatcher

Nightly Dispatcher #8

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:
docker-builds:
uses: ./.github/workflows/docker-builds.yml
backward-compatibility:
uses: ./.github/workflows/backward-compatibility.yml
notify-on-failure:
runs-on: ubuntu-22.04
needs: [docker-builds]
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 }}