From 944a501c675cbe2169a5352c20a0f8bdb2810927 Mon Sep 17 00:00:00 2001 From: Motov Yurii <109919500+YuriiMotov@users.noreply.github.com> Date: Thu, 19 Feb 2026 10:12:23 +0100 Subject: [PATCH] Simplify condition --- .github/workflows/test.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1734529d02..d61b4add94 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -45,10 +45,7 @@ jobs: test: needs: - changes - if: | - needs.changes.outputs.src == 'true' || - github.event_name == 'schedule' || - (github.event_name == 'push' && github.ref == 'refs/heads/master') + if: needs.changes.outputs.src == 'true' || github.ref == 'refs/heads/master' strategy: matrix: os: [ windows-latest, macos-latest ]