From c51489221aeee145771b374f2e75afbefa4e2877 Mon Sep 17 00:00:00 2001 From: Yevgeni Tsodikov Date: Thu, 7 Aug 2025 10:31:46 +0300 Subject: [PATCH] Fix GitHub Actions permissions for master branch pushes Add contents: write permission to ci_master.yml workflow to allow the release process to push version bump commits back to the repository. --- .github/workflows/ci_master.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci_master.yml b/.github/workflows/ci_master.yml index 1a61c83..a9483fb 100644 --- a/.github/workflows/ci_master.yml +++ b/.github/workflows/ci_master.yml @@ -5,6 +5,9 @@ on: branches: - master +permissions: + contents: write + jobs: build: runs-on: ubuntu-latest