Skip to content

Commit 9ecd4f3

Browse files
committed
Add Pullfrog workflow
1 parent cc98919 commit 9ecd4f3

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/pullfrog.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Pullfrog
2+
on:
3+
workflow_dispatch:
4+
inputs:
5+
prompt:
6+
type: string
7+
description: 'Agent prompt'
8+
workflow_call:
9+
inputs:
10+
prompt:
11+
description: 'Agent prompt'
12+
type: string
13+
14+
permissions:
15+
id-token: write
16+
17+
jobs:
18+
agent-run:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Checkout code
22+
uses: actions/checkout@v4
23+
with:
24+
fetch-depth: 1
25+
- name: Run agent
26+
uses: pullfrog/action@v0
27+
with:
28+
prompt: ${{ github.event.inputs.prompt }}
29+
github_installation_token: ${{ secrets.GITHUB_INSTALLATION_TOKEN }}
30+
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}

0 commit comments

Comments
 (0)