4a4c544e7a
Co-authored-by: Gandalf the Greybeard <pe_gandalf@noreply.git.farh.net> Co-committed-by: Gandalf the Greybeard <pe_gandalf@noreply.git.farh.net>
22 lines
559 B
YAML
22 lines
559 B
YAML
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: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Run CI/CD health check
|
|
env:
|
|
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}
|
|
run: |
|
|
if [ -z "$GITEA_TOKEN" ]; then
|
|
echo "::warning::GITEA_TOKEN not configured — health check may have limited data."
|
|
fi
|
|
./.github/scripts/ci-health-check.sh |