Skip to content

Commit

Permalink
Merge pull request #282 from unverbraucht/master
Browse files Browse the repository at this point in the history
Allow setting the timeout.
  • Loading branch information
SamKirkland authored Aug 22, 2022
2 parents d0aa838 + 4f0dc29 commit 01dea7c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ async function runDeployment() {
"dangerous-clean-slate": optionalBoolean("dangerous-clean-slate", core.getInput("dangerous-clean-slate")),
"exclude": optionalStringArray("exclude", core.getMultilineInput("exclude")),
"log-level": optionalLogLevel("log-level", core.getInput("log-level")),
"security": optionalSecurity("security", core.getInput("security"))
"security": optionalSecurity("security", core.getInput("security")),
"timeout": optionalInt("timeout", core.getInput("timeout"))
};

await deploy(args);
Expand Down

0 comments on commit 01dea7c

Please sign in to comment.