From 40f5ce7472845339803e8c2be18ffac629c2cba5 Mon Sep 17 00:00:00 2001 From: Pacsfury <280690649+Pacsfury@users.noreply.github.com> Date: Mon, 10 Aug 2026 14:49:13 +0200 Subject: [PATCH 1/4] Add 'dev' branch to MacOS workflow triggers --- .github/workflows/macos.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/macos.yaml b/.github/workflows/macos.yaml index 029a851..1695b4e 100644 --- a/.github/workflows/macos.yaml +++ b/.github/workflows/macos.yaml @@ -2,9 +2,9 @@ name: Go (MacOS) on: push: - branches: [ "main" ] + branches: [ "main", "dev" ] pull_request: - branches: [ "main" ] + branches: [ "main", "dev" ] jobs: From 3fbb6eb5e05513612dc1074ced34eb937ea3c39f Mon Sep 17 00:00:00 2001 From: Pacsfury <280690649+Pacsfury@users.noreply.github.com> Date: Mon, 10 Aug 2026 14:49:44 +0200 Subject: [PATCH 2/4] Add 'dev' branch to workflow triggers --- .github/workflows/ubuntu.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ubuntu.yaml b/.github/workflows/ubuntu.yaml index cccaf6e..f45aec6 100644 --- a/.github/workflows/ubuntu.yaml +++ b/.github/workflows/ubuntu.yaml @@ -2,9 +2,9 @@ name: Go (Ubuntu) on: push: - branches: [ "main" ] + branches: [ "main", "dev" ] pull_request: - branches: [ "main" ] + branches: [ "main", "dev" ] jobs: From f692cd96f270c3035c08a87120417af1345998e2 Mon Sep 17 00:00:00 2001 From: Pacsfury <280690649+Pacsfury@users.noreply.github.com> Date: Mon, 10 Aug 2026 14:50:13 +0200 Subject: [PATCH 3/4] Update workflow to include 'dev' branch --- .github/workflows/windows.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows.yaml b/.github/workflows/windows.yaml index bf250fa..7529a98 100644 --- a/.github/workflows/windows.yaml +++ b/.github/workflows/windows.yaml @@ -2,9 +2,9 @@ name: Go (Windows) on: push: - branches: [ "main" ] + branches: [ "main", "dev" ] pull_request: - branches: [ "main" ] + branches: [ "main", "dev" ] jobs: From 2c7cf3169173adb35476b650dbf5ed4f8a41484e Mon Sep 17 00:00:00 2001 From: Pacsfury <280690649+Pacsfury@users.noreply.github.com> Date: Mon, 10 Aug 2026 14:52:06 +0200 Subject: [PATCH 4/4] Add write permissions for contents in build workflow --- .github/workflows/build.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 3ec8622..60ab95a 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -4,6 +4,9 @@ on: push: branches: [ main ] +permissions: + contents: write + jobs: build: runs-on: ubuntu-latest