From 84deb8067de59838a1cf80757c7269f2911e36d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Malfait?= Date: Mon, 2 Feb 2026 13:00:36 +0100 Subject: [PATCH] fix: add missing permissions block to claude-cross-repo job The claude-code-action needs id-token: write to fetch an OIDC token. The claude-cross-repo job was missing its permissions block entirely, causing it to fail with "Could not fetch an OIDC token". Co-Authored-By: Claude Opus 4.5 --- .github/workflows/claude.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/claude.yml b/.github/workflows/claude.yml index 4e4d74dabc..85684ad50c 100644 --- a/.github/workflows/claude.yml +++ b/.github/workflows/claude.yml @@ -72,6 +72,11 @@ jobs: if: github.event_name == 'repository_dispatch' runs-on: ubuntu-latest timeout-minutes: 60 + permissions: + contents: write + pull-requests: write + issues: write + id-token: write services: postgres: image: postgres:16