From c6855d4752117860dfb4d1a7abddb6315c140aac Mon Sep 17 00:00:00 2001 From: MHSanaei Date: Sun, 31 May 2026 23:50:51 +0200 Subject: [PATCH] fix(ci): let issue bot run for non-collaborator issue authors The handle-issue job uses claude-code-action, which by default refuses to run unless the triggering user has write access. Public issue authors never do, so the job failed on essentially every real issue. Set allowed_non_write_users: "*" on the triage job (mention job left gated). --- .github/workflows/claude-issue-bot.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/claude-issue-bot.yml b/.github/workflows/claude-issue-bot.yml index 37adb41b..4b7bd386 100644 --- a/.github/workflows/claude-issue-bot.yml +++ b/.github/workflows/claude-issue-bot.yml @@ -21,6 +21,7 @@ jobs: with: github_token: ${{ secrets.GITHUB_TOKEN }} claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} + allowed_non_write_users: "*" claude_args: | --max-turns 25 --allowedTools "Bash(gh:*),Read,Glob,Grep"