From b77d59a12626f1b174bba2925551d623a72f8218 Mon Sep 17 00:00:00 2001 From: Zuzanna Date: Fri, 3 Oct 2025 15:33:56 +0200 Subject: [PATCH 1/2] removed redundant condition --- .github/workflows/test-trigger.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/test-trigger.yml b/.github/workflows/test-trigger.yml index fabd95657..929392d36 100644 --- a/.github/workflows/test-trigger.yml +++ b/.github/workflows/test-trigger.yml @@ -10,7 +10,6 @@ on: jobs: trigger-tests: - if: github.ref_name == 'staging' runs-on: ubuntu-latest steps: - name: Trigger E2E test run (local) From 38c997fecb76e42123330760f3573a7745f0d4c8 Mon Sep 17 00:00:00 2001 From: Zuzanna Date: Fri, 7 Nov 2025 12:45:37 +0100 Subject: [PATCH 2/2] 2025.12 update --- .github/workflows/test-trigger.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-trigger.yml b/.github/workflows/test-trigger.yml index 929392d36..f31f215a1 100644 --- a/.github/workflows/test-trigger.yml +++ b/.github/workflows/test-trigger.yml @@ -6,7 +6,7 @@ name: Trigger E2E tests on: push: - branches: [ staging, 2025.9-rc, 2025.9-test ] + branches: [ staging, 2025.12-rc, 2025.12-test ] jobs: trigger-tests: @@ -18,9 +18,9 @@ jobs: if [ "$branch" = "staging" ]; then event_type="trigger-e2e-tests-staging" - elif [ "$branch" = "2025.9-rc" ]; then + elif [ "$branch" = "2025.12-rc" ]; then event_type="trigger-e2e-tests-rc" - elif [ "$branch" = "2025.9-test" ]; then + elif [ "$branch" = "2025.12-test" ]; then event_type="trigger-e2e-tests-test" fi