From a9d6e46356c49871bb4b172534be68ded648622d Mon Sep 17 00:00:00 2001 From: Christopher Wolf <4867233+HaGGi13@users.noreply.github.com> Date: Sun, 22 Feb 2026 20:30:43 +0100 Subject: [PATCH] Update branch triggers in workflow configuration Adjusted branch triggers in the build workflow to include `main`, `release/*`, and `develop` branches for both pushes and pull requests. --- .github/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 53cf57c..c5c7406 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -2,10 +2,10 @@ name: Build and analyze on: push: - branches: [develop, master] + branches: [main, release/*, develop] pull_request: types: [opened, synchronize, reopened] - branches: [develop, master] + branches: [main, release/*, develop] workflow_dispatch: permissions: