Skip to content
Merged
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
6 changes: 6 additions & 0 deletions .github/workflows/auto-fix-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ on:
description: 'Issue number (e.g., 1234)'
required: true
type: number
show_full_output:
description: 'Show full Claude SDK output in logs (may expose secrets — use for debugging only)'
required: false
type: boolean
default: false

# Per-issue concurrency to prevent duplicate analysis
concurrency:
Expand Down Expand Up @@ -74,6 +79,7 @@ jobs:
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
github_token: ${{ secrets.GITHUB_TOKEN }}
allowed_non_write_users: '*'
show_full_output: ${{ github.event.inputs.show_full_output || 'false' }}
prompt: |
Fix the issue in getsentry/sentry-javascript with number #${{ steps.parse-issue.outputs.issue_number }}.

Expand Down
Loading