Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading