From 2fa3bbd91cfb250d047ec668e69866937cd6010c Mon Sep 17 00:00:00 2001 From: Evan Rusackas Date: Fri, 22 May 2026 21:11:21 -0700 Subject: [PATCH] chore(ci): limit /app/prefix matrix variant to master merges (#40385) Co-authored-by: Claude Co-authored-by: Claude Sonnet 4.6 --- .github/workflows/superset-e2e.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/superset-e2e.yml b/.github/workflows/superset-e2e.yml index 43aea2833e3..113658d7dc2 100644 --- a/.github/workflows/superset-e2e.yml +++ b/.github/workflows/superset-e2e.yml @@ -42,7 +42,7 @@ jobs: matrix: parallel_id: [0, 1, 2, 3, 4, 5] browser: ["chrome"] - app_root: ["", "/app/prefix"] + app_root: ${{ github.event_name == 'push' && fromJSON('["", "/app/prefix"]') || fromJSON('[""]') }} env: SUPERSET_ENV: development SUPERSET_CONFIG: tests.integration_tests.superset_test_config @@ -161,7 +161,7 @@ jobs: fail-fast: false matrix: browser: ["chromium"] - app_root: ["", "/app/prefix"] + app_root: ${{ github.event_name == 'push' && fromJSON('["", "/app/prefix"]') || fromJSON('[""]') }} env: SUPERSET_ENV: development SUPERSET_CONFIG: tests.integration_tests.superset_test_config