From 27e3c055fca62bb871266e72181efdb872109e9a Mon Sep 17 00:00:00 2001 From: Alex Notov Date: Tue, 16 Sep 2025 16:59:11 -0600 Subject: [PATCH] Fix CI: Revert CLAUDE_API_KEY to ANTHROPIC_API_KEY in GitHub Actions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The GitHub Actions workflows were updated to use CLAUDE_API_KEY but the repository secrets still use ANTHROPIC_API_KEY. Reverting to maintain compatibility with existing infrastructure while keeping all other Claude branding changes. 🤖 Generated with Claude Code Co-Authored-By: Claude --- .github/workflows/claude-link-review.yml | 2 +- .github/workflows/claude-model-check.yml | 2 +- .github/workflows/claude-notebook-review.yml | 2 +- .github/workflows/notebook-quality.yml | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/claude-link-review.yml b/.github/workflows/claude-link-review.yml index e0753be..636232d 100644 --- a/.github/workflows/claude-link-review.yml +++ b/.github/workflows/claude-link-review.yml @@ -25,7 +25,7 @@ jobs: - name: Run Claude Link Review uses: anthropics/claude-code-action@v1 with: - CLAUDE_API_KEY: ${{ secrets.CLAUDE_API_KEY }} + ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} github_token: ${{ secrets.GITHUB_TOKEN }} prompt: "/link-review" claude_args: | diff --git a/.github/workflows/claude-model-check.yml b/.github/workflows/claude-model-check.yml index faccd86..6d96573 100644 --- a/.github/workflows/claude-model-check.yml +++ b/.github/workflows/claude-model-check.yml @@ -24,7 +24,7 @@ jobs: - name: Claude Model Validation uses: anthropics/claude-code-action@v1 with: - CLAUDE_API_KEY: ${{ secrets.CLAUDE_API_KEY }} + ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} github_token: ${{ secrets.GITHUB_TOKEN }} prompt: "/model-check" claude_args: | diff --git a/.github/workflows/claude-notebook-review.yml b/.github/workflows/claude-notebook-review.yml index 8ee2ea7..1efb35e 100644 --- a/.github/workflows/claude-notebook-review.yml +++ b/.github/workflows/claude-notebook-review.yml @@ -25,7 +25,7 @@ jobs: - name: Run Claude Notebook Review uses: anthropics/claude-code-action@v1 with: - CLAUDE_API_KEY: ${{ secrets.CLAUDE_API_KEY }} + ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} github_token: ${{ secrets.GITHUB_TOKEN }} prompt: "/notebook-review" claude_args: | diff --git a/.github/workflows/notebook-quality.yml b/.github/workflows/notebook-quality.yml index b2cefc6..f1b6269 100644 --- a/.github/workflows/notebook-quality.yml +++ b/.github/workflows/notebook-quality.yml @@ -57,7 +57,7 @@ jobs: if: github.event_name == 'pull_request' && steps.validate.outputs.has_issues == 'true' uses: anthropics/claude-code-action@v1 with: - CLAUDE_API_KEY: ${{ secrets.CLAUDE_API_KEY }} + ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} github_token: ${{ secrets.GITHUB_TOKEN }} prompt: | The notebook validation found these issues: @@ -88,7 +88,7 @@ jobs: github.event.pull_request.author_association == 'MEMBER' || github.event.pull_request.author_association == 'OWNER' env: - CLAUDE_API_KEY: ${{ secrets.CLAUDE_API_KEY }} + ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} run: | mkdir -p test_outputs for notebook in $(find . -name "*.ipynb" -not -path "*/.*" -not -path "*/test_outputs/*"); do