Files
shockbot/.github/workflows/pullfrog.yml
T
Colin McDonnell 5c60791b34 Update workflow
2026-01-15 23:47:40 +00:00

38 lines
924 B
YAML

# PULLFROG ACTION — DO NOT EDIT EXCEPT WHERE INDICATED
name: Pullfrog
on:
workflow_dispatch:
inputs:
prompt:
type: string
description: Agent prompt
workflow_call:
inputs:
prompt:
description: Agent prompt
type: string
permissions:
id-token: write
contents: read
jobs:
pullfrog:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Run agent
uses: pullfrog/pullfrog@main
with:
prompt: ${{ inputs.prompt }}
env:
# Feel free to comment out any you won't use
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY }}
GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }}
CURSOR_API_KEY: ${{ secrets.CURSOR_API_KEY }}