From 6d81ee33d11824d07a9001b4cf3c9d90d581a2b1 Mon Sep 17 00:00:00 2001 From: "Junyan Liu (Centific Technologies Inc)" Date: Fri, 7 Nov 2025 00:32:54 -0800 Subject: [PATCH] Increase operations-per-run to 400 and the stale threshold from 7 to 31 --- .github/workflows/StaleIssues.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/StaleIssues.yml b/.github/workflows/StaleIssues.yml index 4845bf47a..4310fd8bf 100644 --- a/.github/workflows/StaleIssues.yml +++ b/.github/workflows/StaleIssues.yml @@ -12,8 +12,9 @@ jobs: - uses: actions/stale@v10 with: days-before-issue-stale: 365 - days-before-issue-close: 7 + days-before-issue-close: 31 stale-issue-label: "stale" - stale-issue-message: "This issue has been inactive for a year. It will be closed in 7 days if no further activity occurs. If you believe this issue is still relevant, please comment to keep it open." + stale-issue-message: "This issue has been inactive for a year. It will be closed in 31 days if no further activity occurs. If you believe this issue is still relevant, please comment to keep it open." close-issue-message: "Closing due to prolonged inactivity." + operations-per-run: 400 repo-token: ${{ secrets.GITHUB_TOKEN }}