From f877d97a21caa95d0e0ec8b991c8ca501c336300 Mon Sep 17 00:00:00 2001 From: Piotr Mlocek Date: Mon, 20 Jul 2026 13:34:18 -0700 Subject: [PATCH] fix(ci): grant E2E permissions to release workflows Signed-off-by: Piotr Mlocek --- .github/workflows/release-dev.yml | 4 ++++ .github/workflows/release-tag.yml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/release-dev.yml b/.github/workflows/release-dev.yml index 82b5b2a11..615c630b8 100644 --- a/.github/workflows/release-dev.yml +++ b/.github/workflows/release-dev.yml @@ -69,6 +69,10 @@ jobs: e2e: needs: [build-gateway, build-supervisor] + permissions: + actions: read + contents: read + packages: read uses: ./.github/workflows/e2e-test.yml with: image-tag: ${{ github.sha }} diff --git a/.github/workflows/release-tag.yml b/.github/workflows/release-tag.yml index ca63a6992..ee4fbffbe 100644 --- a/.github/workflows/release-tag.yml +++ b/.github/workflows/release-tag.yml @@ -91,6 +91,10 @@ jobs: e2e: needs: [compute-versions, build-gateway, build-supervisor] + permissions: + actions: read + contents: read + packages: read uses: ./.github/workflows/e2e-test.yml with: image-tag: ${{ needs.compute-versions.outputs.source_sha }}