From 1f368551c15b90e548773840a232f86810c3d41f Mon Sep 17 00:00:00 2001 From: htom Date: Tue, 11 Nov 2025 11:12:39 +0100 Subject: [PATCH] removed pull_request dispatch from the test files --- .github/workflows/dispatcher.yml | 6 +++--- .github/workflows/engine_test.yml | 1 - .github/workflows/server_test.yml | 1 - .github/workflows/ui_test.yml | 1 - 4 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/dispatcher.yml b/.github/workflows/dispatcher.yml index d16fb75..52556cc 100644 --- a/.github/workflows/dispatcher.yml +++ b/.github/workflows/dispatcher.yml @@ -26,13 +26,13 @@ jobs: SERVER=false UI=false - if [[ "$BRANCH" == *"Engine"* ] || [ "$BRANCH" == *"engine"* ]]; then + if "$BRANCH" == *"Engine"* || "$BRANCH" == *"engine"* ; then ENGINE=true fi - if [[ "$BRANCH" == *"Server"* ] || [ "$BRANCH" == *"server"* ]]; then + if "$BRANCH" == *"Server"* || "$BRANCH" == *"server"* ; then SERVER=true fi - if [[ "$BRANCH" == *"UI"* ] || [ "$BRANCH" == *"ui"* ]]; then + if "$BRANCH" == *"UI"* || "$BRANCH" == *"ui"* ; then UI=true fi diff --git a/.github/workflows/engine_test.yml b/.github/workflows/engine_test.yml index 4590631..3f4bfec 100644 --- a/.github/workflows/engine_test.yml +++ b/.github/workflows/engine_test.yml @@ -1,7 +1,6 @@ name: Engine Tests on: - pull_request: workflow_dispatch: workflow_call: diff --git a/.github/workflows/server_test.yml b/.github/workflows/server_test.yml index f39eae5..4a2e817 100644 --- a/.github/workflows/server_test.yml +++ b/.github/workflows/server_test.yml @@ -1,7 +1,6 @@ name: Server Tests on: - pull_request: workflow_dispatch: workflow_call: diff --git a/.github/workflows/ui_test.yml b/.github/workflows/ui_test.yml index 114283a..7f0ca2c 100644 --- a/.github/workflows/ui_test.yml +++ b/.github/workflows/ui_test.yml @@ -1,7 +1,6 @@ name: UI Tests on: - pull_request: workflow_dispatch: workflow_call: