Skip to content

Commit e270c2d

Browse files
committed
remove required option from command
1 parent 8e15cd3 commit e270c2d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/context.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export interface ActionInputs {
1111
export function getInputs(): ActionInputs {
1212
return {
1313
token: core.getInput("token", { required: true }),
14-
command: core.getInput("command", { required: true }),
14+
command: core.getInput("command"),
1515
workdir: core.getInput("cwd") || ".",
1616
installOnly: core.getBooleanInput("install-only") || false,
1717
}

0 commit comments

Comments
 (0)