From 77108cb1a826b4aebf0c715e7d7b67af03669827 Mon Sep 17 00:00:00 2001 From: DARKZOUL5 Date: Thu, 19 Mar 2026 22:06:57 +0200 Subject: [PATCH] Restrict branch triggers in unit tests workflow to only 'main' --- .github/workflows/unit-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index a25bbd9..99fc1ef 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -3,9 +3,9 @@ name: Unit tests on: workflow_dispatch: push: - branches: [ main, Next ] + branches: [ main ] pull_request: - branches: [ main, Next ] + branches: [ main ] jobs: tests: