From 7075c9c01b500ff3c6289d5c68baf40b535e46e5 Mon Sep 17 00:00:00 2001 From: jth-nw Date: Wed, 18 Mar 2026 12:56:25 -0500 Subject: [PATCH 1/2] fix: increase max turns for content-fix jobs The content-fix skill was running out of turns before completing (posted progress comment but never created PR). Increase to 50 turns for both content-fix and content-fix-followup jobs. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/claude-issue-labeler.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/claude-issue-labeler.yml b/.github/workflows/claude-issue-labeler.yml index 2c120b5499..bb3e890ca4 100644 --- a/.github/workflows/claude-issue-labeler.yml +++ b/.github/workflows/claude-issue-labeler.yml @@ -144,7 +144,7 @@ jobs: - REPO: ${{ github.repository }} - ISSUE_NUMBER: ${{ github.event.issue.number }} - ISSUE_TITLE: ${{ github.event.issue.title }} - claude_args: '--allowedTools "Bash(gh:*),Bash(git:*),Bash(vale:*),Read,Write,Edit,Glob,Grep,Skill(content-fix),Skill(dale)"' + claude_args: '--max-turns 50 --allowedTools "Bash(gh:*),Bash(git:*),Bash(vale:*),Read,Write,Edit,Glob,Grep,Skill(content-fix),Skill(dale)"' content-fix-followup: needs: process-issue @@ -199,4 +199,4 @@ jobs: This is a follow-up invocation. A user replied with @claude on a content_fix issue. Read the full issue body AND all comments to understand the complete context. - claude_args: '--allowedTools "Bash(gh:*),Bash(git:*),Bash(vale:*),Read,Write,Edit,Glob,Grep,Skill(content-fix),Skill(dale)"' + claude_args: '--max-turns 50 --allowedTools "Bash(gh:*),Bash(git:*),Bash(vale:*),Read,Write,Edit,Glob,Grep,Skill(content-fix),Skill(dale)"' From bad59ab3e0487680bcb8dcbbd77197f0b2bd946d Mon Sep 17 00:00:00 2001 From: jth-nw Date: Wed, 18 Mar 2026 13:09:28 -0500 Subject: [PATCH 2/2] fix: increase max turns for doc-followup @claude handler MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Same fix as content-fix — the doc-pr-fix skill has a multi-step workflow that can exhaust the default turn limit. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/claude-doc-pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/claude-doc-pr.yml b/.github/workflows/claude-doc-pr.yml index f2f223d31e..7708e0ead0 100644 --- a/.github/workflows/claude-doc-pr.yml +++ b/.github/workflows/claude-doc-pr.yml @@ -277,7 +277,7 @@ jobs: show_full_output: true prompt: | /doc-pr-fix ${{ steps.pr-info.outputs.number }} $COMMENT_BODY - claude_args: '--allowedTools "Bash(gh:*),Bash(git:*),Read,Write,Edit,Glob,Grep,Skill(doc-pr-fix),Skill(dale),Skill(doc-help)"' + claude_args: '--max-turns 50 --allowedTools "Bash(gh:*),Bash(git:*),Read,Write,Edit,Glob,Grep,Skill(doc-pr-fix),Skill(dale),Skill(doc-help)"' - name: Resolve inline comments and dismiss old reviews if: steps.pr-info.outputs.is_fork == 'false' && steps.pr-info.outputs.targets_dev == 'true'