From d5871f1c3d50569a8a564d1b689b8e13803a8a24 Mon Sep 17 00:00:00 2001 From: ldraney Date: Fri, 12 Jan 2024 08:43:19 -0700 Subject: [PATCH] string interpolation fix --- .github/scripts/trigger-regression.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/trigger-regression.js b/.github/scripts/trigger-regression.js index 1066f63e8f..7717343f61 100644 --- a/.github/scripts/trigger-regression.js +++ b/.github/scripts/trigger-regression.js @@ -13,7 +13,7 @@ const triggerAndWait = async ({ github, context, core }) => { const repo = 'notification-api-qa'; // private repo to contact const workflow_id = 'regression.yml'; // Replace with your workflow file name or ID const ref = '1526-test-branch'; // Usually main or master. THIS IS THE REF of the REGRESSION repo! - const jobName = 'Test in ${ENVIRONMENT}'; // Replace with the name of the job you want + const jobName = `Test in ${ENVIRONMENT}`; // Replace with the name of the job you want // Create a timestamp for workflow run tracking const triggerTimestamp = new Date().toISOString();