Skip to content

Commit bb9bada

Browse files
committed
Final App Poc completed
1 parent 2de2fab commit bb9bada

File tree

2 files changed

+0
-18
lines changed

2 files changed

+0
-18
lines changed

setup-env/dist/index.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9405,10 +9405,6 @@ class ActionInput {
94059405
core.info(`${ENV_VARS.BROWSERSTACK_BUILD_NAME} environment variable set as: ${this.buildName}`);
94069406
core.info(`Use ${ENV_VARS.BROWSERSTACK_BUILD_NAME} environment variable for your build name capability in your tests\n`);
94079407

9408-
core.info(`Values of Bstack creds are: username - ${this.username}, accessKey - ${this.accessKey}`);
9409-
core.info(`Values of extractable vars are: rerunAttempt - ${this.rerunAttempt}, runId - ${this.runId}, repository - ${this.repository}`);
9410-
core.info(`Values of mandatory parms are: github_token - ${this.githubToken}, githubApp - ${this.githubApp}`);
9411-
94129408
if (await this.checkIfBStackReRun()) {
94139409
await this.setBStackRerunEnvVars();
94149410
}
@@ -9462,14 +9458,9 @@ class ActionInput {
94629458
'Content-Type': 'application/json',
94639459
},
94649460
});
9465-
9466-
core.info(`bsApiResponse - ${JSON.stringify(bsApiResponse.data)}`);
94679461
const variables = bsApiResponse?.data?.data?.variables;
9468-
core.info(`variables object: ${JSON.stringify(variables)}`);
94699462
if (variables && typeof variables === 'object') {
9470-
// Iterate over all keys in variables and set them as environment variables
94719463
Object.keys(variables).forEach((key) => {
9472-
core.info(`Setting env var - ${key}: ${variables[key]}`);
94739464
core.exportVariable(key, variables[key]);
94749465
});
94759466
}

setup-env/src/actionInput/index.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,6 @@ class ActionInput {
7575
core.info(`${ENV_VARS.BROWSERSTACK_BUILD_NAME} environment variable set as: ${this.buildName}`);
7676
core.info(`Use ${ENV_VARS.BROWSERSTACK_BUILD_NAME} environment variable for your build name capability in your tests\n`);
7777

78-
core.info(`Values of Bstack creds are: username - ${this.username}, accessKey - ${this.accessKey}`);
79-
core.info(`Values of extractable vars are: rerunAttempt - ${this.rerunAttempt}, runId - ${this.runId}, repository - ${this.repository}`);
80-
core.info(`Values of mandatory parms are: github_token - ${this.githubToken}, githubApp - ${this.githubApp}`);
81-
8278
if (await this.checkIfBStackReRun()) {
8379
await this.setBStackRerunEnvVars();
8480
}
@@ -132,14 +128,9 @@ class ActionInput {
132128
'Content-Type': 'application/json',
133129
},
134130
});
135-
136-
core.info(`bsApiResponse - ${JSON.stringify(bsApiResponse.data)}`);
137131
const variables = bsApiResponse?.data?.data?.variables;
138-
core.info(`variables object: ${JSON.stringify(variables)}`);
139132
if (variables && typeof variables === 'object') {
140-
// Iterate over all keys in variables and set them as environment variables
141133
Object.keys(variables).forEach((key) => {
142-
core.info(`Setting env var - ${key}: ${variables[key]}`);
143134
core.exportVariable(key, variables[key]);
144135
});
145136
}

0 commit comments

Comments
 (0)