From 09de4d15326a5202e2fc1de31da44b93af902a37 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Fri, 4 Jul 2025 09:56:52 -0300 Subject: [PATCH] chore: add required API key secrets for CI workflows (#8877) --- .github/workflows/nightly_build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/nightly_build.yml b/.github/workflows/nightly_build.yml index 7251ea60a..e8fad2d1d 100644 --- a/.github/workflows/nightly_build.yml +++ b/.github/workflows/nightly_build.yml @@ -145,6 +145,9 @@ jobs: uses: ./.github/workflows/python_test.yml with: python-versions: '["3.10", "3.11", "3.12", "3.13"]' + secrets: + OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} + ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} # Not making nightly builds dependent on integration test success # due to inherent flakiness of 3rd party integrations