bff9014cf8
ARC runner scale set was recreated on 2026-03-19 with label `runners-privilegedescalation` but all shared workflows still referenced `local-ubuntu-latest`. This label mismatch caused startup_failure on every Release workflow and queued CI jobs with no runner to pick them up. Updates all 4 workflows and the actionlint config to match the current ARC runner scale set label. Closes #27
24 lines
529 B
YAML
24 lines
529 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: 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 |