Scheduled Health Check #29936
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: Scheduled Health Check | |
# Controls when the action will run. | |
on: | |
schedule: | |
- cron: "30 * * * *" | |
jobs: | |
health_check_job: | |
runs-on: ubuntu-latest | |
name: Check all sites | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run Shell Script | |
id: shell_script_run | |
run: bash ./health-check.sh |