Check Status of Templates #653
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: Check Status of Templates | |
on: | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
- cron: '0 10,19 * * *' | |
workflow_dispatch: | |
workflow_run: | |
workflows: [Regenerate Template Snapshot] | |
types: | |
- completed | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout PR head | |
uses: actions/checkout@v3 | |
- name: Setup Deno | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.x | |
- name: Run Deno Script | |
run: deno run --allow-read --allow-write --allow-net .scripts/status-check.ts | |
- name: Send PagerDuty alert on failure | |
if: ${{ failure() }} | |
uses: miparnisari/[email protected] | |
with: | |
pagerduty-integration-key: '${{ secrets.PAGERDUTY_INTEGRATION_KEY }}' | |
pagerduty-dedup-key: github_workflow_failed | |
incident-summary: 'Some templates are not responding successfully on their preview URLs' |