From 6afded44570cc291b13587b5e06a4884f0f48356 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 100, 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..5c702df7d68a 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: 100