From aad1b72b3d3aab888f6a52af69a5577f766b12e9 Mon Sep 17 00:00:00 2001 From: Snider Date: Tue, 30 Sep 2025 15:13:43 +0100 Subject: [PATCH] Update workflow permissions to contents: write Changed GitHub Actions workflow permissions from 'contents: read' to 'contents: write' in all relevant workflow files. This allows workflows to perform write operations on repository contents, which may be required for certain actions or automation steps. --- .github/workflows/_on-pr-fast.yml | 2 +- .github/workflows/_on-pr.yml | 2 +- .github/workflows/_on-push.yml | 2 +- .github/workflows/_on-release.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/_on-pr-fast.yml b/.github/workflows/_on-pr-fast.yml index a0cb7ec3..87d0734b 100644 --- a/.github/workflows/_on-pr-fast.yml +++ b/.github/workflows/_on-pr-fast.yml @@ -1,6 +1,6 @@ name: PR Fast permissions: - contents: read + contents: write on: # Allows you to run this workflow manually from the Actions tab workflow_dispatch: diff --git a/.github/workflows/_on-pr.yml b/.github/workflows/_on-pr.yml index dc2002b3..4a23b8d1 100644 --- a/.github/workflows/_on-pr.yml +++ b/.github/workflows/_on-pr.yml @@ -1,6 +1,6 @@ name: PR permissions: - contents: read + contents: write on: # Allows you to run this workflow manually from the Actions tab workflow_dispatch: diff --git a/.github/workflows/_on-push.yml b/.github/workflows/_on-push.yml index 28fd723c..38d9fb4c 100644 --- a/.github/workflows/_on-push.yml +++ b/.github/workflows/_on-push.yml @@ -1,6 +1,6 @@ name: Push Compile permissions: - contents: read + contents: write packages: write on: # Allows you to run this workflow manually from the Actions tab diff --git a/.github/workflows/_on-release.yml b/.github/workflows/_on-release.yml index bef4d946..7c83d56a 100644 --- a/.github/workflows/_on-release.yml +++ b/.github/workflows/_on-release.yml @@ -1,6 +1,6 @@ name: Push Full Build permissions: - contents: read + contents: write on: # Allows you to run this workflow manually from the Actions tab workflow_dispatch: