~cytrogen/gstack

ref: 029a7c2a37a67d007a53df4077a4c8f13b6281d1 gstack/.github/workflows/skill-docs.yml -rw-r--r-- 365 bytes
029a7c2a — Garry Tan feat: eval-watch dashboard + observability unit tests (15 tests, 11 codepaths) a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
name: Skill Docs Freshness
on: [push, pull_request]
jobs:
  check-freshness:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: oven-sh/setup-bun@v2
      - run: bun install
      - run: bun run gen:skill-docs
      - run: git diff --exit-code || (echo "Generated SKILL.md files are stale. Run: bun run gen:skill-docs" && exit 1)