File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # PULLFROG ACTION — DO NOT EDIT EXCEPT WHERE INDICATED
12name : Pullfrog
23on :
34 workflow_dispatch :
1011 prompt :
1112 description : Agent prompt
1213 type : string
14+ secrets : inherit
1315
1416permissions :
1517 id-token : write
16- contents : read
1718
1819jobs :
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 }}
You can’t perform that action at this time.
0 commit comments