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/auto-fix-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,10 @@ jobs:
- name: Try to fix the issue with Claude
id: triage
uses: anthropics/claude-code-action@fad22eb3fa582b7357fc0ea48af6645851b884fd # v1
env:
ANTHROPIC_BASE_URL: https://openrouter.ai/api
with:
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
anthropic_api_key: ${{ secrets.OPENROUTER_API_KEY }}
github_token: ${{ secrets.GITHUB_TOKEN }}
allowed_non_write_users: '*'
Comment thread
chargome marked this conversation as resolved.
show_full_output: ${{ github.event.inputs.show_full_output || 'false' }}
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/dependabot-auto-triage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,10 @@ jobs:

- name: Open batched runtime fix PR via skill
uses: anthropics/claude-code-action@fad22eb3fa582b7357fc0ea48af6645851b884fd # v1
env:
ANTHROPIC_BASE_URL: https://openrouter.ai/api
with:
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
anthropic_api_key: ${{ secrets.OPENROUTER_API_KEY }}
github_token: ${{ steps.app-token.outputs.token }}
settings: |
{
Expand Down Expand Up @@ -234,8 +236,10 @@ jobs:

- name: Open batched dev fix PR via skill
uses: anthropics/claude-code-action@fad22eb3fa582b7357fc0ea48af6645851b884fd # v1
env:
ANTHROPIC_BASE_URL: https://openrouter.ai/api
with:
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
anthropic_api_key: ${{ secrets.OPENROUTER_API_KEY }}
github_token: ${{ steps.app-token.outputs.token }}
settings: |
{
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/track-framework-updates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,10 @@ jobs:
- name: Run Claude digest
id: digest
uses: anthropics/claude-code-action@fad22eb3fa582b7357fc0ea48af6645851b884fd # v1
env:
ANTHROPIC_BASE_URL: https://openrouter.ai/api
with:
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
anthropic_api_key: ${{ secrets.OPENROUTER_API_KEY }}
github_token: ${{ secrets.GITHUB_TOKEN }}
allowed_non_write_users: '*'
prompt: |
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/triage-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,10 @@ jobs:
- name: Run Claude triage
id: triage
uses: anthropics/claude-code-action@fad22eb3fa582b7357fc0ea48af6645851b884fd # v1
env:
ANTHROPIC_BASE_URL: https://openrouter.ai/api
with:
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
anthropic_api_key: ${{ secrets.OPENROUTER_API_KEY }}
github_token: ${{ secrets.GITHUB_TOKEN }}
allowed_non_write_users: '*'
settings: |
Expand Down
Loading