cfb35fe73d
actions/checkout v6 was already adopted in headlamp-agent-skills. This brings the org-level reusable workflows (plugin-ci, plugin-release, ci-health-check) up to the same version. Affects all plugin repos that call these shared workflows. Co-Authored-By: Paperclip <noreply@paperclip.ing>
24 lines
520 B
YAML
24 lines
520 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: local-ubuntu-latest
|
|
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 |