From 44636af246e43b11a91dfe6b61e011451ed2a4a7 Mon Sep 17 00:00:00 2001 From: Dan Calavrezo <195309321+dcalavrezo-qorix@users.noreply.github.com> Date: Tue, 17 Mar 2026 13:13:12 +0200 Subject: [PATCH] docs: fix permission issues The documentation deployment workflow was failing in the reusable docs pipeline because the deploy job runs softprops/turnstyle@v3, which queries the Actions API to list repository workflows. The job declared explicit permissions but omitted actions: read, so the workflow token could not access that endpoint and the deployment stopped with "Resource not accessible by integration". Add actions: read to the docs-deploy job in the reusable workflow so the deploy token can inspect workflow state while keeping the existing GitHub Pages deployment flow unchanged. --- .github/workflows/docs.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index f91506a..2586fc3 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -172,6 +172,7 @@ jobs: runs-on: ${{ vars.REPO_RUNNER_LABELS && fromJSON(vars.REPO_RUNNER_LABELS) || 'ubuntu-latest' }} needs: docs-build permissions: + actions: read pages: write id-token: write contents: write