From cba528a2f48c1e753f5fecdba377711b990f91ef Mon Sep 17 00:00:00 2001 From: Aviv Keller Date: Mon, 22 Jun 2026 19:16:16 -0400 Subject: [PATCH] meta: speed up stale bot Signed-off-by: Aviv Keller --- .github/workflows/stale.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 217dfcfbae36b4..ff698a2f086147 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -29,6 +29,7 @@ jobs: permissions: issues: write # for actions/stale to close stale issues pull-requests: write # for actions/stale to close stale PRs + actions: write # for actions/stale to cache stale saved state if: github.repository == 'nodejs/node' runs-on: ubuntu-slim steps: @@ -46,5 +47,5 @@ jobs: close-pr-message: ${{ format(env.CLOSE_MESSAGE, 'pull request') }} stale-pr-message: ${{ format(env.WARN_MESSAGE, 'pull request') }} # max requests it will send per run to the GitHub API before it deliberately exits to avoid hitting API rate limits - operations-per-run: 500 + operations-per-run: 2500 remove-stale-when-updated: true