Skip to content

Update pullfrog.yml to new template with env-based API keys #2

Update pullfrog.yml to new template with env-based API keys

Update pullfrog.yml to new template with env-based API keys #2

Workflow file for this run

# PULLFROG ACTION — DO NOT EDIT EXCEPT WHERE INDICATED

Check failure on line 1 in .github/workflows/pullfrog.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pullfrog.yml

Invalid workflow file

(Line: 14, Col: 14): Unexpected value 'inherit'
name: Pullfrog
on:
workflow_dispatch:
inputs:
prompt:
type: string
description: Agent prompt
workflow_call:
inputs:
prompt:
description: Agent prompt
type: string
secrets: inherit
permissions:
id-token: write
jobs:
agent:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run agent
uses: pullfrog/action@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 }}