From 52dcd5f635a3fe066f42b0aefa16238ddcef6812 Mon Sep 17 00:00:00 2001 From: Jordan Dubrick Date: Mon, 2 Dec 2024 15:26:26 -0500 Subject: [PATCH] Slow Down Rate of Issuing Stale/Rotten Labels (#1654) * reduce number of issues being operated on at once Signed-off-by: Jordan Dubrick * Update .github/workflows/stale.yaml Co-authored-by: Theofanis Petkos Signed-off-by: Jordan Dubrick * update description Signed-off-by: Jordan Dubrick * update message Signed-off-by: Jordan Dubrick --------- Signed-off-by: Jordan Dubrick Co-authored-by: Theofanis Petkos --- .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..cd9473b6 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 120 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 120 days." days-before-stale: 90 - days-before-close: 60 + days-before-close: 120 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