From bb026942c2b84fdc7c9819e16de9d726da4ed330 Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Thu, 14 Apr 2022 19:30:06 -0400 Subject: [PATCH] .github/workflows/stale.yml: increase operations limit By setting `ascending` to `true`, the most stale issues and PRs will be caught first. By increasing the operations limit from the default (30) to 250, more stale issues/PRs will be caught each run, increasing the speed of the burndown. --- .github/workflows/stale.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 91ac19e4f638..9dbb76cd2a3d 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -17,3 +17,5 @@ jobs: days-before-stale: 90 days-before-close: 14 exempt-all-assignees: true + ascending: true + operations-per-run: 250