From f0aaa6e2c1ffa12ecba79b2311debc5d2f6cad94 Mon Sep 17 00:00:00 2001 From: Bruno Domingues Date: Thu, 4 Dec 2025 12:48:11 -0300 Subject: [PATCH] feat(deploy): add write-all permissions to deploy workflow This commit adds write-all permissions to the get-version and deploy jobs in the deploy workflow. This allows the workflow to properly interact with the repository for versioning and deployment tasks. --- .github/workflows/deploy.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 3ce122d..d2e0ee5 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -11,6 +11,7 @@ jobs: get-version: name: Determine Next Version runs-on: ubuntu-latest + permissions: write-all if: github.event.pull_request.merged == true outputs: version: ${{ steps.version.outputs.next_version }} @@ -26,6 +27,7 @@ jobs: deploy: name: Deploy needs: [get-version] + permissions: write-all uses: Aignosi/github_workflow_templates/.github/workflows/reusable-deploy.yml@feature/SIENTIAPDE-1352 with: version: ${{ needs.get-version.outputs.version }}