Fix CI: Revert CLAUDE_API_KEY to ANTHROPIC_API_KEY in GitHub Actions

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 <noreply@anthropic.com>
This commit is contained in:
Alex Notov
2025-09-16 16:59:11 -06:00
parent bfffab4523
commit 27e3c055fc
4 changed files with 5 additions and 5 deletions

View File

@@ -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: |

View File

@@ -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: |

View File

@@ -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: |

View File

@@ -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