~cytrogen/gstack

ref: 5205070299a757170df81bcb2a75edb8a2a1ca14 gstack/.github/workflows/skill-docs.yml -rw-r--r-- 365 bytes
52050702 — Garry Tan feat: SKILL.md template system, 3-tier testing, DX tools (v0.3.3) (#41) 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)