Files
gstack/.github/workflows/skill-docs.yml
Workflow config file is invalid. Please check your config file: model.ReadWorkflow: yaml: line 11: mapping values are not allowed in this context
Garry Tan 5393739862 ci: SKILL.md freshness check on push/PR + TODO updates
- .github/workflows/skill-docs.yml: fails if generated SKILL.md files are stale
- TODO.md: add E2E cost tracking and model pinning to future ideas
2026-03-13 15:43:47 -07:00

12 lines
365 B
YAML

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)