From 9f333c37f4a6d2ec68f3b7f78f0be7d976ef0cc3 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Thu, 1 Jan 2026 12:03:21 +0100 Subject: [PATCH 1/2] fix(workflow): update Claude action to use claude_args for model configuration --- .github/workflows/claude.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/claude.yml b/.github/workflows/claude.yml index 9a23e72aa..f43ae81c4 100644 --- a/.github/workflows/claude.yml +++ b/.github/workflows/claude.yml @@ -36,7 +36,7 @@ jobs: uses: anthropics/claude-code-action@v1 with: claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} - model: opus + claude_args: '--model opus --dangerously-skip-permissions' # This is an optional setting that allows Claude to read CI results on PRs additional_permissions: | @@ -45,8 +45,3 @@ jobs: # When triggered by Claude label, provide default prompt to work on the issue prompt: ${{ github.event.action == 'labeled' && 'ultrathink Please analyze this issue and implement a solution. Follow the project guidelines in CLAUDE.md.' || '' }} - # Optional: Add claude_args to customize behavior and configuration - # See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md - # or https://code.claude.com/docs/en/cli-reference for available options - # claude_args: '--allowed-tools Bash(gh pr:*)' - From bb1681e86ee7dcd9b5e05626856a204bd5c38963 Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Thu, 1 Jan 2026 12:04:13 +0100 Subject: [PATCH 2/2] fix(workflow): remove dangerously-skip-permissions from Claude args --- .github/workflows/claude.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/claude.yml b/.github/workflows/claude.yml index f43ae81c4..8133e97fe 100644 --- a/.github/workflows/claude.yml +++ b/.github/workflows/claude.yml @@ -36,7 +36,7 @@ jobs: uses: anthropics/claude-code-action@v1 with: claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} - claude_args: '--model opus --dangerously-skip-permissions' + claude_args: '--model opus' # This is an optional setting that allows Claude to read CI results on PRs additional_permissions: |