From 6d09097f5c6e71350bb25a52c4ad6e57b8cfa872 Mon Sep 17 00:00:00 2001 From: Manor Hazaz Date: Tue, 25 Aug 2026 14:17:32 +0300 Subject: [PATCH] Internal: Grant nested build permissions in Deploy workflow [TMZ-1053] (#689) Co-authored-by: Cursor --- .github/workflows/deploy.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 2927c084..44e61891 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -44,6 +44,11 @@ jobs: needs: validate uses: ./.github/workflows/build.yml secrets: inherit + permissions: + actions: read + contents: read + deployments: write + pull-requests: write deploy: needs: [validate, build]