From 55d3a6b56598bb544a77a116d8e488d41b3538d6 Mon Sep 17 00:00:00 2001 From: Redstoneur Date: Wed, 18 Feb 2026 11:02:21 +0100 Subject: [PATCH 1/2] Use GH_PAT secret in release workflow Replace the default GITHUB_TOKEN with the GH_PAT secret in .github/workflows/release.yml. This switches the release job to use a personal access token (with broader scopes if needed) for release-related operations such as creating releases or uploading artifacts. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3ffe090..8e6e160 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -68,4 +68,4 @@ jobs: artifacts/**/PyMacroRecorder artifacts/**/PyMacroRecorder.exe env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GH_PAT }} From 2e95e5ec4a970e0abbe47c4bc0290dd41cbc59d8 Mon Sep 17 00:00:00 2001 From: Redstoneur Date: Wed, 18 Feb 2026 11:07:18 +0100 Subject: [PATCH 2/2] Add push trigger for master branch in CI configuration --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1916b2b..d682c66 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,6 +5,9 @@ on: branches: - dev - master + push: + branches: + - master jobs: lint-and-test: