Skip to content

Commit

Permalink
Added missing properties in jobs steps
Browse files Browse the repository at this point in the history
  • Loading branch information
RecoX committed Aug 25, 2024
1 parent 9d1403f commit d5fe261
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/aider-on-issue-labeled.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Auto-generate PR using Aider

on:
workflow_call:
workflow_call:
inputs:
issue-number:
required: true
Expand All @@ -15,10 +15,13 @@ on:

jobs:
generate:
uses: mirrajabi/aider-github-workflows/.github/workflows/aider-issue-to-pr.yml@main
with:
issue-number: ${{ inputs['issue-number'] }}
base-branch: ${{ inputs['base-branch'] }}
model: anthropic/claude-3-sonnet-20240229
secrets:
anthropic_api_key: ${{ secrets.anthropic_api_key }}
name: Generate PR
runs-on: ubuntu-latest
steps:
- uses: mirrajabi/aider-github-workflows/.github/workflows/aider-issue-to-pr.yml@main
with:
issue-number: ${{ inputs.issue-number }}
base-branch: ${{ inputs.base-branch }}
model: anthropic/claude-3-sonnet-20240229
secrets:
anthropic_api_key: ${{ secrets.anthropic_api_key }}

0 comments on commit d5fe261

Please sign in to comment.