We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7a1965 commit bdd887dCopy full SHA for bdd887d
index.js
@@ -30,7 +30,7 @@ function sleep(time) {
30
core.group('Execute Test', async () => {
31
// 1. Trigger Test
32
const envString = ENVIRONMENT ? `&enviroment=${ENVIRONMENT}` : '';
33
- const testTrigger = (await axios.get(`${API_URL}/test/${TEST_ID}/execute?location=${LOCATION}${envString}`)).data;
+ const testTrigger = (await axios.get(`${API_URL}/test/${TEST_ID}/execute?source=gh_action&location=${LOCATION}${envString}`)).data;
34
const reportUrl = testTrigger.reportUrl;
35
console.log(testTrigger.message);
36
core.setOutput("reportUrl", reportUrl);
0 commit comments