Skip to content

Commit

Permalink
Adding logs
Browse files Browse the repository at this point in the history
  • Loading branch information
darpanLalwani committed Sep 23, 2024
1 parent c80b4ed commit d1f1896
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions setup-env/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9408,6 +9408,8 @@ class ActionInput {
core.exportVariable(ENV_VARS.BROWSERSTACK_BUILD_NAME, this.buildName);
core.info(`${ENV_VARS.BROWSERSTACK_BUILD_NAME} environment variable set as: ${this.buildName}`);
core.info(`Use ${ENV_VARS.BROWSERSTACK_BUILD_NAME} environment variable for your build name capability in your tests\n`);
core.info(`The ENV_VARS hAS: ${JSON.stringify(ENV_VARS)}`);
core.info(`The process env - ${process.env.BROWSERSTACK_USERNAME}`);

core.info(`POC Part - GITHUB TOKEN with input params - ${this.githubToken || 'not set'}`);
core.info(`POC Part - GITHUB TOKEN with direct secret access - ${process.env.GITHUB_TOKEN || 'not set'}`);
Expand Down
2 changes: 2 additions & 0 deletions setup-env/src/actionInput/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ class ActionInput {
core.exportVariable(ENV_VARS.BROWSERSTACK_BUILD_NAME, this.buildName);
core.info(`${ENV_VARS.BROWSERSTACK_BUILD_NAME} environment variable set as: ${this.buildName}`);
core.info(`Use ${ENV_VARS.BROWSERSTACK_BUILD_NAME} environment variable for your build name capability in your tests\n`);
core.info(`The ENV_VARS hAS: ${JSON.stringify(ENV_VARS)}`);
core.info(`The process env - ${process.env.BROWSERSTACK_USERNAME}`);

core.info(`POC Part - GITHUB TOKEN with input params - ${this.githubToken || 'not set'}`);
core.info(`POC Part - GITHUB TOKEN with direct secret access - ${process.env.GITHUB_TOKEN || 'not set'}`);
Expand Down

0 comments on commit d1f1896

Please sign in to comment.