From 18d4f4ff6d5b8f6d04af7333d124679c74561d9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Gronowski?= Date: Fri, 10 Jul 2026 16:32:13 +0200 Subject: [PATCH] gha/sync-release-branch: Use actions write permission MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `workflows` is not a supported GITHUB_TOKEN permission key, so GitHub rejects the workflow definition. Use the valid `actions` permission for both jobs. Signed-off-by: Paweł Gronowski --- .github/workflows/sync-release-branch.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync-release-branch.yml b/.github/workflows/sync-release-branch.yml index 802424a2108b..c5b5775b7da3 100644 --- a/.github/workflows/sync-release-branch.yml +++ b/.github/workflows/sync-release-branch.yml @@ -29,7 +29,7 @@ jobs: runs-on: ubuntu-24.04 permissions: contents: write - workflows: write + actions: write outputs: base_sha: ${{ steps.sync.outputs.base_sha }} has_changes: ${{ steps.sync.outputs.has_changes }} @@ -120,7 +120,7 @@ jobs: environment: docker-releases permissions: contents: write - workflows: write + actions: write timeout-minutes: 10 steps: - name: Checkout