From 2203518627ba70bd6d233c89c9380df0fad88990 Mon Sep 17 00:00:00 2001 From: SJ Date: Thu, 20 Nov 2025 09:26:21 -0500 Subject: [PATCH] Added write permission to nudgebot Also increased the operations-per-run slightly --- .github/workflows/nudgebot.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nudgebot.yaml b/.github/workflows/nudgebot.yaml index 9b43d757173..8294a6a3bb5 100644 --- a/.github/workflows/nudgebot.yaml +++ b/.github/workflows/nudgebot.yaml @@ -11,6 +11,7 @@ jobs: runs-on: ubuntu-latest if: github.repository_owner == 'pantsbuild' permissions: + actions: write issues: write steps: - uses: actions/stale@v10 @@ -33,5 +34,5 @@ jobs: days-before-pr-stale: -1 days-before-pr-close: -1 - operations-per-run: 100 + operations-per-run: 250 repo-token: ${{ secrets.GITHUB_TOKEN }}