From 252bc2f6683daf5026e6db40a26f99fb6df56324 Mon Sep 17 00:00:00 2001 From: Salvatore Martorana <124510313+SMartorana@users.noreply.github.com> Date: Sun, 8 Mar 2026 21:56:07 +0100 Subject: [PATCH] Grant workflow contents write permission Add a permissions block to .github/workflows/move-docs.yml (contents: write) so the Action can push to gh-pages. Includes an inline Italian comment describing the purpose. --- .github/workflows/move-docs.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/move-docs.yml b/.github/workflows/move-docs.yml index 632fc68..4bcf951 100644 --- a/.github/workflows/move-docs.yml +++ b/.github/workflows/move-docs.yml @@ -11,6 +11,11 @@ on: jobs: build-and-deploy: runs-on: ubuntu-latest + + # Definisce i permessi necessari alla Action per pushare su gh-pages + permissions: + contents: write + steps: - name: Checkout repository uses: actions/checkout@v4