From c274b6fa2d85d24ad3986cf3799cbb1350558934 Mon Sep 17 00:00:00 2001 From: Can Demiralp Date: Wed, 30 Oct 2024 17:17:51 +0100 Subject: [PATCH] Update e2e-test.yml --- .github/workflows/e2e-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e-test.yml b/.github/workflows/e2e-test.yml index 2fdccfd63..f0eeef408 100644 --- a/.github/workflows/e2e-test.yml +++ b/.github/workflows/e2e-test.yml @@ -50,7 +50,7 @@ jobs: DEPLOY_SAMPLEDATA: 1 steps: # Define variables for the test case - - run: echo "IS_RELEASE=${{ contains(github.event.pull_request.title, 'Release 9.') && 'TRUE' || 'FALSE' }}" >> $GITHUB_ENV + - run: echo "IS_RELEASE=${{ contains(github.event.pull_request.title, 'Release v9.') && 'TRUE' || 'FALSE' }}" >> $GITHUB_ENV - run: echo "TEST_GROUP=${{ env.IS_RELEASE == 'TRUE' && 'all' || (inputs.testGroup || 'standard') }}" >> $GITHUB_ENV - run: echo "TEST_BRANCH=${{ (env.IS_RELEASE == 'TRUE' || !inputs.testBranch) && 'develop' || inputs.testBranch }}" >> $GITHUB_ENV - run: echo "EXPRESS_BRANCH=${{ contains(fromJSON('["all", "express-checkout"]'), env.TEST_GROUP) && (inputs.expressBranch || 'main') || '' }}" >> $GITHUB_ENV