Skip to content

Commit

Permalink
Create goose-enhance.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelneale authored Sep 24, 2024
1 parent 240f5ca commit 51ae125
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/goose-enhance.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Goose

on:
issues:
types:
- labeled

jobs:
flutter-test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Init Hermit
uses: cashapp/activate-hermit@v1
with:
cache: true

- name: Install Dependencies
run: just get

- name: Run Goose
uses: michaelneale/goose-fix-it-action@v5
with:
task_request: |
${{ github.event.issue.title }}
${{ github.event.issue.body }}
[Link to issue](${{ github.event.issue.html_url }})
validation: "run just test"
create_pr: 'true'
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}

- name: Run Flutter Analyze
run: just analyze

- name: Run Flutter Test
run: just test

0 comments on commit 51ae125

Please sign in to comment.