Skip to content

Commit 2919431

Browse files
committed
Set { required: false } when getting input
1 parent 9ec1a08 commit 2919431

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code-build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ async function waitForBuildEndTime(
166166
function githubInputs() {
167167
const projectName = core.getInput("project-name", { required: true });
168168
const disableSourceOverride =
169-
core.getInput("disable-source-override") === "true";
169+
core.getInput("disable-source-override", { required: false }) === "true";
170170
const { owner, repo } = github.context.repo;
171171
const { payload } = github.context;
172172
// The github.context.sha is evaluated on import.

0 commit comments

Comments
 (0)