2df48640bb
- Replace node -e JSON parsing with jq (available on our runners) - Exclude Release workflow failures from FAIL count — these fail at the post-release PR-creation step due to missing RELEASE_APP org secrets (tracked in PRI-380), not actual CI breakage - Demote Release failures to WARN so the health check exits 0 when only Release is broken, giving clean signal for real CI problems - Increase run limit from 5 to 10 for better intermittent failure detection - Remove unnecessary Node.js setup step from the workflow Co-Authored-By: Paperclip <noreply@paperclip.ing>
19 lines
421 B
YAML
19 lines
421 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: runners-privilegedescalation
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Run CI/CD health check
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: |
|
|
./.github/scripts/ci-health-check.sh |