Skip to content

Commit

Permalink
add bunaider
Browse files Browse the repository at this point in the history
  • Loading branch information
seveibar committed Sep 5, 2024
1 parent 1fab99d commit f311258
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/bunaider.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Bunaider Auto-Fix
on:
issues:
types: [labeled]

jobs:
auto-fix:
if: github.event.label.name == 'aider'
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup Bun
uses: oven-sh/setup-bun@v1

- name: Install bunaider
run: bun install -g bunaider

- run: bunaider init

- name: Run bunaider fix
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.issue.number }}

0 comments on commit f311258

Please sign in to comment.