From 0aa97f4fd0ba39f936d823212b48526024f01db3 Mon Sep 17 00:00:00 2001 From: Anna Bocharova Date: Tue, 13 Jan 2026 12:22:35 +0100 Subject: [PATCH] fix(CI): Changing the API keys to uppercase and moving to `env` (#26) * fix(CI): Changing the API keys to uppercase Due to c335032 See diff https://github.com/pullfrog/action/commit/c335032c37b5aa957ee3d9f7d37a937ed3ece150#diff-35ec9ad6938f4a0788911257499ca3ccf99c80cca56a22e86706f2c17f636835 * fix: Moving the keys to env --- .github/workflows/pullfrog.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pullfrog.yml b/.github/workflows/pullfrog.yml index 6a670ba..bc4db45 100644 --- a/.github/workflows/pullfrog.yml +++ b/.github/workflows/pullfrog.yml @@ -32,13 +32,12 @@ jobs: uses: pullfrog/action@main env: log_level: ${{ vars.LOG_LEVEL }} + # 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 }} with: prompt: ${{ github.event.inputs.prompt }} - - # 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 }}