Fix dependabot auto-merge #97
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: LLM Context Lint | |
| on: | |
| push: | |
| paths: ['.llm/**'] | |
| pull_request: | |
| paths: ['.llm/**'] | |
| jobs: | |
| llm-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| # Both scripts use stdlib only (pathlib, re, sys) — no pip install needed | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.x' | |
| - name: Check .llm file line limit (300 max) | |
| run: python scripts/hooks/check-llm-line-limit.py | |
| - name: Verify skills index is up-to-date | |
| run: python scripts/hooks/regenerate-skills-index.py --check | |
| - name: Check skill code example quality | |
| run: bash scripts/docs/check-llm-skills.sh |