Test Notify on Failure #1
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: Test Notify on Failure | |
on: | |
workflow_dispatch: | |
jobs: | |
notify-on-failure: | |
runs-on: ubuntu-24.04 | |
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 }} |