Skip to content

Commit 5994954

Browse files
authored
Updating pullfrog workflow
Updated descriptions for prompt inputs and changed action versions.
1 parent 9f6fc2a commit 5994954

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

.github/workflows/pullfrog.yml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ on:
55
inputs:
66
prompt:
77
type: string
8-
description: Agent prompt
8+
description: Agent prompt (string or JSON payload)
99
workflow_call:
1010
inputs:
1111
prompt:
12-
description: Agent prompt
12+
description: Agent prompt (string or JSON payload)
1313
type: string
1414

1515
permissions:
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout code
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v6
2525
with:
2626
fetch-depth: 1
2727

@@ -30,13 +30,14 @@ jobs:
3030
# - uses: actions/setup-node@v6
3131

3232
- name: Run agent
33-
uses: pullfrog/action@v0
33+
uses: pullfrog/pullfrog@v0
3434
with:
35-
prompt: ${{ github.event.inputs.prompt }}
35+
prompt: ${{ inputs.prompt }}
3636

37+
env:
3738
# 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 }}
39+
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
40+
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
41+
GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY }}
42+
GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }}
43+
CURSOR_API_KEY: ${{ secrets.CURSOR_API_KEY }}

0 commit comments

Comments
 (0)