From 4f0dc298db6a93059e76e47e44b958574c3aafbf Mon Sep 17 00:00:00 2001 From: Kevin Read Date: Tue, 19 Apr 2022 14:36:22 +0200 Subject: [PATCH] Allow setting the timeout. --- src/main.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 61f03ec..b3b58a5 100644 --- a/src/main.ts +++ b/src/main.ts @@ -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);