From 0665569d264fcc718873838485ca4b1c5404a35e Mon Sep 17 00:00:00 2001 From: Steven Luscher Date: Wed, 28 Dec 2022 19:46:41 -0800 Subject: [PATCH] Crank Stalebot's operations limit up to a level that should handle all issues This thing seems to have been humming along at 300 in the dead zone between NA night and Europe morning. Let's see if it can handle the entire corpus. --- .github/workflows/manage-stale-issues-and-prs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/manage-stale-issues-and-prs.yml b/.github/workflows/manage-stale-issues-and-prs.yml index 23c89a287..ec368143d 100644 --- a/.github/workflows/manage-stale-issues-and-prs.yml +++ b/.github/workflows/manage-stale-issues-and-prs.yml @@ -32,7 +32,7 @@ jobs: exempt-issue-labels: blocked,do-not-close,feature-gate,security exempt-pr-labels: blocked,do-not-close,feature-gate,security # No actual changes get made in debug-only mode, so we can raise the operations ceiling. - operations-per-run: ${{ github.event_name == 'pull_request' && 400 || 300}} + operations-per-run: ${{ github.event_name == 'pull_request' && 1000 || 900}} stale-issue-label: stale stale-issue-message: "" # Leave no comment when marking as stale stale-pr-label: stale