From b79134a91df8c62206317b30cc651344377dde05 Mon Sep 17 00:00:00 2001 From: Matthew Fisher Date: Thu, 19 Nov 2020 12:32:53 -0800 Subject: [PATCH] increase number of operations per run to 100 The default number of operations the stale issue bot will run is 30. This is a good size for a small-to-medium sized project and it prevents rate limits. However, for a project as large as Helm, the number of operations need to be increased so that it can find and close stale issues. Signed-off-by: Matthew Fisher --- .github/workflows/stale-issue-bot.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/stale-issue-bot.yaml b/.github/workflows/stale-issue-bot.yaml index 32ea22418..f8a056551 100644 --- a/.github/workflows/stale-issue-bot.yaml +++ b/.github/workflows/stale-issue-bot.yaml @@ -13,3 +13,4 @@ jobs: exempt-issue-labels: 'keep+open,v4.x' days-before-stale: 90 days-before-close: 30 + operations-per-run: 100