Skip to content

Commit 88f5454

Browse files
author
Massimiliano Pippi
authored
use the right variable (#417)
1 parent ad69500 commit 88f5454

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: .github/workflows/stale.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
let now = new Date().getTime();
3333
for (const issue of issues) {
3434
// If an issue was active in the past 15 days, leave it alone.
35-
if (now - new Date(issue.updated_at).getTime() < elapsedDays) {
35+
if (now - new Date(issue.updated_at).getTime() < elapsed) {
3636
continue;
3737
}
3838

0 commit comments

Comments
 (0)