File tree Expand file tree Collapse file tree 1 file changed +11
-10
lines changed
Expand file tree Collapse file tree 1 file changed +11
-10
lines changed Original file line number Diff line number Diff line change 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
1515permissions :
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 }}
You can’t perform that action at this time.
0 commit comments