Skip to content

Commit 1225c44

Browse files
committed
adding logger
1 parent b7168ad commit 1225c44

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup-env/src/actionInput/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ class ActionInput {
3636
this.githubApp = core.getInput(INPUT.GITHUB_APP);
3737
this.rerunAttempt = process?.env?.GITHUB_RUN_ATTEMPT;
3838
this.runId = process?.env?.GITHUB_RUN_ID;
39-
this.repository = process?.env?.GITHUB_REPOSITORY;;
39+
this.repository = process?.env?.GITHUB_REPOSITORY;
40+
core.info(`The new way of setting repository is: ${this.repository}`);
4041
} catch (e) {
4142
throw Error(`Action input failed for reason: ${e.message}`);
4243
}

0 commit comments

Comments
 (0)