Agent, docs and instructions file clean up #397
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: planner | |
| on: | |
| push: | |
| branches: [develop] | |
| pull_request: | |
| branches: [develop] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| issues: write | |
| jobs: | |
| planner: | |
| runs-on: ubuntu-latest | |
| # DISABLED: Waiting for scripts/agents/planner.agent.js implementation | |
| # See: .github/reports/audits/agent-infrastructure-audit-2025-12-10.md | |
| if: false | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - name: Planner | |
| run: node scripts/agents/planner.agent.js | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |