Skip to content

Commit

Permalink
string interpolation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ldraney committed Jan 12, 2024
1 parent fb26ba2 commit d5871f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/trigger-regression.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit d5871f1

Please sign in to comment.