~cytrogen/gstack

ref: a30f7079da13904d32a50b73f1ff04c1ed75ca7c gstack/.github/workflows/skill-docs.yml -rw-r--r-- 365 bytes
a30f7079 — Garry Tan feat: Fix-First Review — auto-fix obvious issues, ask about hard ones (v0.4.5) (#116) 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)