ci: automate ci health checks (#11)

Co-authored-by: gandalf-the-greybeard[bot] <gandalf-the-greybeard[bot]@users.noreply.github.com>
This commit is contained in:
hugh-hackman[bot]
2026-03-11 01:52:08 +00:00
committed by GitHub
parent 0ef78ac580
commit cd6bbb2481
2 changed files with 96 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
name: CI/CD Health Check
on:
schedule:
- cron: '0 8 * * 1-5' # Every weekday at 8 AM UTC
workflow_dispatch:
jobs:
health-check:
runs-on: local-ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Run CI/CD health check
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
./.github/scripts/ci-health-check.sh