removed pull_request dispatch from the test files

This commit is contained in:
2025-11-11 11:12:39 +01:00
parent 4e9f222ddc
commit 1f368551c1
4 changed files with 3 additions and 6 deletions

View File

@@ -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

View File

@@ -1,7 +1,6 @@
name: Engine Tests
on:
pull_request:
workflow_dispatch:
workflow_call:

View File

@@ -1,7 +1,6 @@
name: Server Tests
on:
pull_request:
workflow_dispatch:
workflow_call:

View File

@@ -1,7 +1,6 @@
name: UI Tests
on:
pull_request:
workflow_dispatch:
workflow_call: