feat(review): frontload PR context into the prompt #17
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: Tests | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/[email protected] | |
| with: | |
| fetch-depth: 1 | |
| - name: Review cycle counter | |
| run: tests/review-cycle-test.sh | |
| - name: Tool usage projection | |
| run: tests/tool-usage-test.sh | |
| - name: Frontloaded PR context | |
| run: tests/pr-context-test.sh | |
| - name: Context step end to end | |
| run: tests/context-step-test.sh |