File tree Expand file tree Collapse file tree 2 files changed +0
-18
lines changed Expand file tree Collapse file tree 2 files changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -9405,10 +9405,6 @@ class ActionInput {
9405
9405
core.info(`${ENV_VARS.BROWSERSTACK_BUILD_NAME} environment variable set as: ${this.buildName}`);
9406
9406
core.info(`Use ${ENV_VARS.BROWSERSTACK_BUILD_NAME} environment variable for your build name capability in your tests\n`);
9407
9407
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
-
9412
9408
if (await this.checkIfBStackReRun()) {
9413
9409
await this.setBStackRerunEnvVars();
9414
9410
}
@@ -9462,14 +9458,9 @@ class ActionInput {
9462
9458
'Content-Type': 'application/json',
9463
9459
},
9464
9460
});
9465
-
9466
- core.info(`bsApiResponse - ${JSON.stringify(bsApiResponse.data)}`);
9467
9461
const variables = bsApiResponse?.data?.data?.variables;
9468
- core.info(`variables object: ${JSON.stringify(variables)}`);
9469
9462
if (variables && typeof variables === 'object') {
9470
- // Iterate over all keys in variables and set them as environment variables
9471
9463
Object.keys(variables).forEach((key) => {
9472
- core.info(`Setting env var - ${key}: ${variables[key]}`);
9473
9464
core.exportVariable(key, variables[key]);
9474
9465
});
9475
9466
}
Original file line number Diff line number Diff line change @@ -75,10 +75,6 @@ class ActionInput {
75
75
core . info ( `${ ENV_VARS . BROWSERSTACK_BUILD_NAME } environment variable set as: ${ this . buildName } ` ) ;
76
76
core . info ( `Use ${ ENV_VARS . BROWSERSTACK_BUILD_NAME } environment variable for your build name capability in your tests\n` ) ;
77
77
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
-
82
78
if ( await this . checkIfBStackReRun ( ) ) {
83
79
await this . setBStackRerunEnvVars ( ) ;
84
80
}
@@ -132,14 +128,9 @@ class ActionInput {
132
128
'Content-Type' : 'application/json' ,
133
129
} ,
134
130
} ) ;
135
-
136
- core . info ( `bsApiResponse - ${ JSON . stringify ( bsApiResponse . data ) } ` ) ;
137
131
const variables = bsApiResponse ?. data ?. data ?. variables ;
138
- core . info ( `variables object: ${ JSON . stringify ( variables ) } ` ) ;
139
132
if ( variables && typeof variables === 'object' ) {
140
- // Iterate over all keys in variables and set them as environment variables
141
133
Object . keys ( variables ) . forEach ( ( key ) => {
142
- core . info ( `Setting env var - ${ key } : ${ variables [ key ] } ` ) ;
143
134
core . exportVariable ( key , variables [ key ] ) ;
144
135
} ) ;
145
136
}
You can’t perform that action at this time.
0 commit comments