Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/autogen-docs-notify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,10 @@ jobs:
- name: Compose reviewer summary
if: steps.pr.outputs.skip != 'true'
uses: anthropics/claude-code-action@3f854a8fb5146b39d5cbf8b57f70d80810e1366f # v1.0.198
env:
ANTHROPIC_BASE_URL: https://llm-gateway.stacklok.dev/anthropic
with:
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
anthropic_api_key: ${{ secrets.STACKLOK_GATEWAY_KEY_SLACK_NOTIFICATION }}
# Skips claude-code-action's OIDC -> GitHub App token exchange
# (which needs id-token: write) and uses the job's own minimally
# scoped GITHUB_TOKEN instead. Unrelated to anthropic_api_key,
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/claude.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,10 @@ jobs:
- name: Run Claude Code
id: claude
uses: anthropics/claude-code-action@3f854a8fb5146b39d5cbf8b57f70d80810e1366f # v1.0.198
env:
ANTHROPIC_BASE_URL: https://llm-gateway.stacklok.dev/anthropic
with:
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
anthropic_api_key: ${{ secrets.STACKLOK_GATEWAY_KEY_CLAUDE_TAG }}
additional_permissions: |
actions: read
claude_args: |
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/upstream-release-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -700,8 +700,10 @@ jobs:
# below for a runaway-cost ceiling.
timeout-minutes: 45
uses: anthropics/claude-code-action@3f854a8fb5146b39d5cbf8b57f70d80810e1366f # v1.0.198
env:
ANTHROPIC_BASE_URL: https://llm-gateway.stacklok.dev/anthropic
with:
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
anthropic_api_key: ${{ secrets.STACKLOK_GATEWAY_KEY_RELEASE_DOCS }}
additional_permissions: |
actions: read
# Allow the action to run when the triggering PR was opened
Expand Down Expand Up @@ -862,8 +864,10 @@ jobs:
# spirals on a file it can't stop "improving".
timeout-minutes: 10
uses: anthropics/claude-code-action@3f854a8fb5146b39d5cbf8b57f70d80810e1366f # v1.0.198
env:
ANTHROPIC_BASE_URL: https://llm-gateway.stacklok.dev/anthropic
with:
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
anthropic_api_key: ${{ secrets.STACKLOK_GATEWAY_KEY_RELEASE_DOCS }}
additional_permissions: |
actions: read
allowed_bots: 'renovate'
Expand Down
Loading