chore: update @tscircuit/checks dependency to version ^0.0.159 and update SVG snapshots for PCB components #3341
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: Bunaider PR Review Response | |
| on: | |
| pull_request_review: | |
| types: [submitted] | |
| jobs: | |
| respond-to-review: | |
| if: github.event.review.state == 'changes_requested' && contains(github.event.review.body, 'aider:') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| - name: Install bunaider | |
| run: bun install -g bunaider | |
| - run: bunaider init | |
| - name: Run bunaider fix on PR | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.TSCIRCUIT_BOT_GITHUB_TOKEN }} | |
| ANTHROPIC_API_KEY: ${{ secrets.TSCIRCUIT_BOT_ANTHROPIC_API_KEY }} | |
| AIDER_SONNET: 1 | |
| run: bunaider fix ${{ github.event.pull_request.number }} |