From fb36d5aeebadaa685e2e20cbb8275cb487d0254f Mon Sep 17 00:00:00 2001 From: Derek Cofausper <256792747+decofe@users.noreply.github.com> Date: Mon, 23 Mar 2026 03:56:49 +0000 Subject: [PATCH] ci: include llms.txt in generated-freshness check Co-authored-by: zhygis <5236121+Zygimantass@users.noreply.github.com> Amp-Thread-ID: https://ampcode.com/threads/T-019d18d6-0fd1-70ad-afce-7f75a28a910e --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b2495059..851cfb65 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,11 +31,11 @@ jobs: - run: node scripts/gen-icons.cjs - name: Check for uncommitted changes run: | - if ! git diff --exit-code schemas/discovery.json schemas/discovery.example.json public/icons/; then + if ! git diff --exit-code schemas/discovery.json schemas/discovery.example.json public/services/llms.txt public/icons/; then echo "::error::Generated files are out of date. Run 'node scripts/generate-discovery.ts && node scripts/gen-icons.cjs' and commit the result." exit 1 fi - UNTRACKED=$(git ls-files --others --exclude-standard schemas/ public/icons/) + UNTRACKED=$(git ls-files --others --exclude-standard schemas/ public/services/ public/icons/) if [ -n "$UNTRACKED" ]; then echo "::error::Untracked generated files found. Commit these files:${UNTRACKED}" exit 1