Skip to content

Commit

Permalink
Getting full repo
Browse files Browse the repository at this point in the history
  • Loading branch information
darpanLalwani committed Sep 19, 2024
1 parent 1636686 commit 915c0e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup-env/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9412,7 +9412,7 @@ class ActionInput {

const runIdDirect = process.env.GITHUB_RUN_ID;
const rerunAttemptDirect = process.env.GITHUB_RUN_ATTEMPT;
const repositoryDirect = github.context.repo.repo;
const repositoryDirect = `${github.context.repo.owner}/${github.context.repo.repo}`;
core.info(`Direct values are - runIdDirect: ${runIdDirect}, rerunAttemptDirect: ${rerunAttemptDirect}, repositoryDirect: ${repositoryDirect}`);

core.info(`Values of Bstack creds are: username - ${this.username}, accessKey - ${this.accessKey}`);
Expand Down
2 changes: 1 addition & 1 deletion setup-env/src/actionInput/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class ActionInput {

const runIdDirect = process.env.GITHUB_RUN_ID;
const rerunAttemptDirect = process.env.GITHUB_RUN_ATTEMPT;
const repositoryDirect = github.context.repo;
const repositoryDirect = `${github.context.repo.owner}/${github.context.repo.repo}`;
core.info(`Direct values are - runIdDirect: ${runIdDirect}, rerunAttemptDirect: ${rerunAttemptDirect}, repositoryDirect: ${repositoryDirect}`);

core.info(`Values of Bstack creds are: username - ${this.username}, accessKey - ${this.accessKey}`);
Expand Down

0 comments on commit 915c0e6

Please sign in to comment.