Skip to content

Health Check

Health Check #340

Workflow file for this run

name: Health Check
on:
schedule:
- cron: '0 */6 * * *' # Runs every 6 hours
workflow_dispatch:
permissions:
issues: write
jobs:
health-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Install wget
run: sudo apt-get install -y wget
- name: Download Webpage
run: wget -O downloaded_index.html https://www.ozfoundation.com
- name: Compare with Local index.html
run: |
diff downloaded_index.html index.html
if [ $? -ne 0 ]; then
echo "Health check failed: The downloaded webpage does not match the local index.html"
exit 1
else
echo "Health check passed: The downloaded webpage matches the local index.html"
fi
create-issue:
runs-on: ubuntu-latest
needs: health-check
if: failure()
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Create Issue
run: |
gh issue create --title "Health Check Failed" --body "The downloaded webpage does not match the local index.html. Please investigate the issue." --assignee gdsmith1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}