From 9a82368dc9e0e77132da63767df817df9a6dcfc4 Mon Sep 17 00:00:00 2001 From: Steven Luscher Date: Mon, 19 Dec 2022 23:03:40 -0800 Subject: [PATCH] Increase stalebot operations limit by 50% We have to increase this until either it can handle 1000 issues in a single run, or we hit the GitHub API operations limit. --- .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 9836d717b3ebad..6ffcbdc0e45486 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' && 100 || 30}} + operations-per-run: ${{ github.event_name == 'pull_request' && 100 || 45}} stale-issue-label: stale stale-issue-message: "" # Leave no comment when marking as stale stale-pr-label: stale