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();