From f1510b758d5310574b17b68a03ec7b5fbf55a1f1 Mon Sep 17 00:00:00 2001 From: Siarhei Fedartsou Date: Tue, 9 Jul 2024 20:32:03 +0300 Subject: [PATCH] Increase number of GitHub operations allowed in stale bot (#6985) --- .github/workflows/stale.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 72cf595ee..0c31ec18c 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -1,5 +1,8 @@ name: 'Close stale issues' on: + pull_request: + branches: + - master schedule: - cron: '30 1 * * *' # every day at 1:30am permissions: @@ -12,6 +15,7 @@ jobs: steps: - uses: actions/stale@v9 with: + operations-per-run: 3000 stale-issue-message: 'This issue seems to be stale. It will be closed in 30 days if no further activity occurs.' stale-pr-message: 'This PR seems to be stale. Is it still relevant?' days-before-issue-stale: 180 # 6 months