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 9ec1a08 commit 2919431Copy full SHA for 2919431
code-build.js
@@ -166,7 +166,7 @@ async function waitForBuildEndTime(
166
function githubInputs() {
167
const projectName = core.getInput("project-name", { required: true });
168
const disableSourceOverride =
169
- core.getInput("disable-source-override") === "true";
+ core.getInput("disable-source-override", { required: false }) === "true";
170
const { owner, repo } = github.context.repo;
171
const { payload } = github.context;
172
// The github.context.sha is evaluated on import.
0 commit comments