fix: baseline-local-artifact now gets local code + artifact sentinel #107
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
| # Repo health gate: catch doc drift and invalid config/tasks before merge. | |
| # Keeps main clean so we can commit working solutions often and reduce entropy. | |
| name: Repo health | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| health: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.10" | |
| - name: Repo health gate (full) | |
| run: python3 scripts/repo_health.py | |
| - name: Verify generated agent navigation artifacts are fresh | |
| run: python3 scripts/refresh_agent_navigation.py --check |