Skip to content

Commit

Permalink
main: set path input as required
Browse files Browse the repository at this point in the history
  • Loading branch information
dawidd6 committed Mar 23, 2020
1 parent 4433177 commit 4f461a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down

0 comments on commit 4f461a3

Please sign in to comment.