.github/workflows/website_health.yml #251
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: Website Health Check | |
on: | |
schedule: | |
- cron: '*/5 * * * *' # Run every 5 minutes (adjust the cron schedule as needed) | |
jobs: | |
health-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Website Health | |
uses: theritikchoure/[email protected] | |
with: | |
website-url: 'https://example.com' | |
max-retries: 3 | |
retry-interval: 5 | |
request-timeout: 10 |