Skip to content

Commit 13daa61

Browse files
authored
Merge pull request #2 from JakePartusch/v1
fix: fixing max timeout reference
2 parents a0de046 + 0ad6305 commit 13daa61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const run = async () => {
2424
"Action must be run in conjunction with the `pull_request` event"
2525
);
2626
}
27-
const MAX_TIMEOUT = Number(core.getInput("site_name")) || 60;
27+
const MAX_TIMEOUT = Number(core.getInput("max_timeout")) || 60;
2828
const siteName = core.getInput("site_name");
2929
if (!siteName) {
3030
core.setFailed("Required field `site_name` was not provided");

0 commit comments

Comments
 (0)