From df39583df6a22a237520eba7756b20b5bacf9b4e Mon Sep 17 00:00:00 2001 From: Erik Rekola Date: Tue, 25 Aug 2026 11:46:19 +0300 Subject: [PATCH] Add required permissions to the workflow_run example --- .../workflows-and-actions/events-that-trigger-workflows.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/content/actions/reference/workflows-and-actions/events-that-trigger-workflows.md b/content/actions/reference/workflows-and-actions/events-that-trigger-workflows.md index 0734cdc180c9..d91d2ec87363 100644 --- a/content/actions/reference/workflows-and-actions/events-that-trigger-workflows.md +++ b/content/actions/reference/workflows-and-actions/events-that-trigger-workflows.md @@ -1248,6 +1248,9 @@ on: jobs: download: runs-on: ubuntu-latest + permissions: + actions: read + issues: write steps: - name: 'Download artifact' uses: {% data reusables.actions.action-download-artifact %}