feat: pivot to best practices collection (v0.2) #58
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
| # Agent Ready - Repository Readiness Check | |
| # Runs on PRs and pushes to check repo setup for AI coding agents | |
| name: Agent Ready | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| check: | |
| name: Check Repository | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Run Agent Ready Check | |
| id: check | |
| uses: ./ | |
| with: | |
| path: '.' | |
| - name: Print Results | |
| env: | |
| PASSED: ${{ steps.check.outputs.passed }} | |
| run: | | |
| echo "Passed: $PASSED" |