Skip to content

Commit 93504fe

Browse files
committed
updating dist
1 parent 78869d9 commit 93504fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup-env/dist/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9330,7 +9330,6 @@ function wrappy (fn, cb) {
93309330

93319331
const core = __nccwpck_require__(2186);
93329332
const axios = __nccwpck_require__(8757);
9333-
const github = __nccwpck_require__(5438);
93349333
const InputValidator = __nccwpck_require__(4881);
93359334
const constants = __nccwpck_require__(1468);
93369335
const { BROWSERSTACK_TEMPLATE } = __nccwpck_require__(1468);
@@ -9367,7 +9366,7 @@ class ActionInput {
93679366
this.githubApp = core.getInput(INPUT.GITHUB_APP);
93689367
this.rerunAttempt = process?.env?.GITHUB_RUN_ATTEMPT;
93699368
this.runId = process?.env?.GITHUB_RUN_ID;
9370-
this.repository = `${github?.context?.repo?.owner}/${github?.context?.repo?.repo}`;
9369+
this.repository = process?.env?.GITHUB_REPOSITORY;
93719370
} catch (e) {
93729371
throw Error(`Action input failed for reason: ${e.message}`);
93739372
}
@@ -9404,6 +9403,7 @@ class ActionInput {
94049403
core.info(`${ENV_VARS.BROWSERSTACK_BUILD_NAME} environment variable set as: ${this.buildName}`);
94059404
core.info(`Use ${ENV_VARS.BROWSERSTACK_BUILD_NAME} environment variable for your build name capability in your tests\n`);
94069405

9406+
core.info(`The new way of setting repository is: ${this.repository}`);
94079407
if (await this.checkIfBStackReRun()) {
94089408
await this.setBStackRerunEnvVars();
94099409
}

0 commit comments

Comments
 (0)