From 1e32110b60c3c9e3ba978d06e8fac4a35aee80bd Mon Sep 17 00:00:00 2001 From: Alexandre Boucaud Date: Fri, 8 May 2026 10:42:05 +0200 Subject: [PATCH] fix(ci): add id-token permission to check-docs workflow The claude-code-action requires an OIDC token to authenticate, which needs id-token: write in the job permissions. This was missing, causing intermittent failures with "Could not fetch an OIDC token". Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/check-docs.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/check-docs.yml b/.github/workflows/check-docs.yml index a8bd8202..a8d68c73 100644 --- a/.github/workflows/check-docs.yml +++ b/.github/workflows/check-docs.yml @@ -13,6 +13,7 @@ jobs: contents: read issues: write # To open an issue if docs are stale pull-requests: write # To post a comment on the merged PR + id-token: write # Required for OIDC token (claude-code-action) steps: - name: Checkout repo