From ee0cb02315d8189ddbc643a398efb31a2921bac2 Mon Sep 17 00:00:00 2001 From: Jordan Dubrick Date: Fri, 29 Nov 2024 13:34:54 -0500 Subject: [PATCH] reduce number of issues being operated on at once Signed-off-by: Jordan Dubrick --- .github/workflows/stale.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/stale.yaml b/.github/workflows/stale.yaml index 532289e9..afb0d7c0 100644 --- a/.github/workflows/stale.yaml +++ b/.github/workflows/stale.yaml @@ -35,16 +35,16 @@ jobs: - uses: actions/stale@v7 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-issue-message: "This issue is stale because it has been open for 90 days with no activity. Remove stale label or comment or this will be closed in 60 days." - stale-pr-message: "This PR is stale because it has been open for 90 days with no activity. Remove stale label or comment or this will be closed in 60 days." + stale-issue-message: "This issue is stale because it has been open for 90 days with no activity. Remove stale label or comment or this will be closed in 90 days." + stale-pr-message: "This PR is stale because it has been open for 90 days with no activity. Remove stale label or comment or this will be closed in 90 days." days-before-stale: 90 - days-before-close: 60 + days-before-close: 90 stale-issue-label: 'lifecycle/stale' stale-pr-label: 'lifecycle/stale' exempt-issue-labels: 'lifecycle/frozen' exempt-pr-labels: 'lifecycle/frozen' close-issue-label: 'lifecycle/rotten' close-pr-label: 'lifecycle/rotten' - operations-per-run: 200 + operations-per-run: 50 ascending: true