File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -167,8 +167,6 @@ function githubInputs() {
167167 const projectName = core . getInput ( "project-name" , { required : true } ) ;
168168 const disableSourceOverride =
169169 core . getInput ( "disable-source-override" , { required : false } ) === "true" ;
170- const disableGithubEnvVars =
171- core . getInput ( "disable-github-env-vars" , { required : false } ) === "true" ;
172170 const { owner, repo } = github . context . repo ;
173171 const { payload } = github . context ;
174172 // The github.context.sha is evaluated on import.
@@ -215,6 +213,9 @@ function githubInputs() {
215213 const hideCloudWatchLogs =
216214 core . getInput ( "hide-cloudwatch-logs" , { required : false } ) === "true" ;
217215
216+ const disableGithubEnvVars =
217+ core . getInput ( "disable-github-env-vars" , { required : false } ) === "true" ;
218+
218219 return {
219220 projectName,
220221 owner,
You can’t perform that action at this time.
0 commit comments