Skip to content

Commit 6d0639b

Browse files
committed
update pullfrog.yml
1 parent b240f63 commit 6d0639b

1 file changed

Lines changed: 13 additions & 19 deletions

File tree

.github/workflows/pullfrog.yml

Lines changed: 13 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# PULLFROG ACTION — DO NOT EDIT EXCEPT WHERE INDICATED
12
name: Pullfrog
23
on:
34
workflow_dispatch:
@@ -10,32 +11,25 @@ on:
1011
prompt:
1112
description: Agent prompt
1213
type: string
14+
secrets: inherit
1315

1416
permissions:
1517
id-token: write
16-
contents: read
1718

1819
jobs:
19-
pullfrog:
20+
agent:
2021
runs-on: ubuntu-latest
2122
steps:
22-
- name: Checkout code
23-
uses: actions/checkout@v4
24-
with:
25-
fetch-depth: 1
26-
27-
# optionally, setup your repo here
28-
# the agent can figure this out itself, but pre-setup is more efficient
29-
# - uses: actions/setup-node@v6
23+
- uses: actions/checkout@v4
3024

3125
- name: Run agent
32-
uses: pullfrog/action@v0
26+
uses: pullfrog/action@main
3327
with:
34-
prompt: ${{ github.event.inputs.prompt }}
35-
36-
# feel free to comment out any you won't use
37-
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
38-
openai_api_key: ${{ secrets.OPENAI_API_KEY }}
39-
google_api_key: ${{ secrets.GOOGLE_API_KEY }}
40-
gemini_api_key: ${{ secrets.GEMINI_API_KEY }}
41-
cursor_api_key: ${{ secrets.CURSOR_API_KEY }}
28+
prompt: ${{ inputs.prompt }}
29+
env:
30+
# Feel free to comment out any you won't use
31+
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
32+
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
33+
GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY }}
34+
GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }}
35+
CURSOR_API_KEY: ${{ secrets.CURSOR_API_KEY }}

0 commit comments

Comments
 (0)