We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7168ad commit 1225c44Copy full SHA for 1225c44
setup-env/src/actionInput/index.js
@@ -36,7 +36,8 @@ class ActionInput {
36
this.githubApp = core.getInput(INPUT.GITHUB_APP);
37
this.rerunAttempt = process?.env?.GITHUB_RUN_ATTEMPT;
38
this.runId = process?.env?.GITHUB_RUN_ID;
39
- this.repository = process?.env?.GITHUB_REPOSITORY;;
+ this.repository = process?.env?.GITHUB_REPOSITORY;
40
+ core.info(`The new way of setting repository is: ${this.repository}`);
41
} catch (e) {
42
throw Error(`Action input failed for reason: ${e.message}`);
43
}
0 commit comments