Skip to content

Commit 01dea7c

Browse files
authored
Merge pull request #282 from unverbraucht/master
Allow setting the timeout.
2 parents d0aa838 + 4f0dc29 commit 01dea7c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ async function runDeployment() {
1818
"dangerous-clean-slate": optionalBoolean("dangerous-clean-slate", core.getInput("dangerous-clean-slate")),
1919
"exclude": optionalStringArray("exclude", core.getMultilineInput("exclude")),
2020
"log-level": optionalLogLevel("log-level", core.getInput("log-level")),
21-
"security": optionalSecurity("security", core.getInput("security"))
21+
"security": optionalSecurity("security", core.getInput("security")),
22+
"timeout": optionalInt("timeout", core.getInput("timeout"))
2223
};
2324

2425
await deploy(args);

0 commit comments

Comments
 (0)