Skip to content

Commit

Permalink
[skip ci] fix stalebot (#476)
Browse files Browse the repository at this point in the history
  • Loading branch information
Massimiliano Pippi authored Nov 13, 2019
1 parent d3c1d50 commit dfba10a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/stale.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
const issues = await github.paginate(opts);
// Set this value to whatever makes sense for the repo.
let elapsedDays = 15
let elapsedDays = 30
let elapsed = elapsedDays * 24 * 60 * 60 * 1000;
let now = new Date().getTime();
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
const issues = await github.paginate(opts);
// Set this value to whatever makes sense for the repo.
let elapsedDays = 30;
let elapsedDays = 15;
let elapsed = elapsedDays * 24 * 60 * 60 * 1000;
let now = new Date().getTime();
Expand Down

0 comments on commit dfba10a

Please sign in to comment.