From b12be12ea0ed9ac8c33d04442ad8dcc058faca10 Mon Sep 17 00:00:00 2001 From: default Date: Thu, 11 Dec 2025 19:59:49 +0000 Subject: [PATCH] fix: add id-token permission to classify-issue-severity workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The claude-code-action requires OIDC token authentication, which needs the id-token: write permission to be granted to the workflow. Fixes the error: "Failed to setup GitHub token: Error: Could not fetch an OIDC token. Did you remember to add `id-token: write` to your workflow permissions?" 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- .github/workflows/classify-issue-severity.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/classify-issue-severity.yml b/.github/workflows/classify-issue-severity.yml index 68f0e04077db8..649988d20392d 100644 --- a/.github/workflows/classify-issue-severity.yml +++ b/.github/workflows/classify-issue-severity.yml @@ -10,6 +10,7 @@ on: permissions: contents: read + id-token: write # zizmor: ignore[excessive-permissions] - Required by claude-code-action for OIDC auth jobs: analyze: