From 4f461a318eb67dc01424d47b688d97c0460441bb Mon Sep 17 00:00:00 2001 From: Dawid Dziurla Date: Mon, 23 Mar 2020 20:40:33 +0100 Subject: [PATCH] main: set path input as required --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index b8177d45..73f60d6e 100644 --- a/main.js +++ b/main.js @@ -10,7 +10,7 @@ async function main() { const workflow = core.getInput("workflow", { required: true }) const name = core.getInput("name", { required: true }) const [owner, repo] = core.getInput("repo", { required: true }).split("/") - const path = core.getInput("path") || "./" + const path = core.getInput("path", {required: true}) const pr = core.getInput("pr") let commit = core.getInput("commit")