mirror of
https://github.com/garrytan/gstack.git
synced 2026-05-05 21:25:27 +02:00
a5731d3a68
Having "Run: bun" inside a plain scalar is not allowed per YAML spec which states: Plain scalars must never contain the “: ” and “ #” character combinations. This simple fix switches to block scalars (|) to eliminate the ambiguity without changing runtime behavior.
18 lines
672 B
YAML
18 lines
672 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
|
|
- name: Check Claude host freshness
|
|
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)
|
|
- name: Check Codex host freshness
|
|
run: bun run gen:skill-docs --host codex
|
|
- run: |
|
|
git diff --exit-code -- .agents/ || (echo "Generated Codex SKILL.md files are stale. Run: bun run gen:skill-docs --host codex" && exit 1)
|