Skip to content

Commit 325a701

Browse files
committed
Add pullfrog.yml workflow
1 parent 4972727 commit 325a701

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

.github/workflows/pullfrog.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# PULLFROG ACTION — DO NOT EDIT EXCEPT WHERE INDICATED
2+
name: Pullfrog
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
prompt:
7+
type: string
8+
description: 'Agent prompt'
9+
workflow_call:
10+
inputs:
11+
prompt:
12+
description: 'Agent prompt'
13+
type: string
14+
15+
permissions:
16+
id-token: write
17+
contents: read
18+
19+
jobs:
20+
pullfrog:
21+
runs-on: ubuntu-latest
22+
steps:
23+
- name: Checkout code
24+
uses: actions/checkout@v4
25+
with:
26+
fetch-depth: 1
27+
28+
# Optionally, setup your repo here
29+
# The agent can generally figure this out itself, but pre-setup can be more efficient
30+
# - uses: actions/setup-node@v6
31+
32+
- name: Run agent
33+
uses: pullfrog/action@v0
34+
with:
35+
prompt: ${{ github.event.inputs.prompt }}
36+
37+
# Feel free to comment out any you won't use
38+
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
39+
openai_api_key: ${{ secrets.OPENAI_API_KEY }}
40+
google_api_key: ${{ secrets.GOOGLE_API_KEY }}
41+
gemini_api_key: ${{ secrets.GEMINI_API_KEY }}
42+
cursor_api_key: ${{ secrets.CURSOR_API_KEY }}
43+

0 commit comments

Comments
 (0)