Skip to content

Commit 80554f9

Browse files
Increase inactivity timeout to 40 minutes
1 parent 535ddf8 commit 80554f9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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.

dist/index.js.map

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/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ async function run() {
2828

2929
const pollingDuration = parseInt(core.getInput("pollingDuration") || "7200", 10); // Default 120 minutes
3030
const pollingInterval = parseInt(core.getInput("pollingInterval") || "2", 10); // Default 2 seconds
31-
const inactivityTimeoutSeconds = 20 * 60; // 20 minutes
31+
const inactivityTimeoutSeconds = 40 * 60; // 40 minutes
3232

3333
// Start polling for commands
3434
const startTime = Date.now();

0 commit comments

Comments
 (0)