From c6ec1fff7846e1a702af3fc2d40b9050da88fad6 Mon Sep 17 00:00:00 2001 From: Massimiliano Pippi Date: Fri, 8 Nov 2019 10:48:22 +0100 Subject: [PATCH] [skip ci] fix stalebot --- .github/workflows/stale.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/stale.yaml b/.github/workflows/stale.yaml index 119a95e8703..d439cb0cf00 100644 --- a/.github/workflows/stale.yaml +++ b/.github/workflows/stale.yaml @@ -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(); @@ -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();