From c502a27b8fdb297badbd9cccb771337b677c7beb Mon Sep 17 00:00:00 2001 From: Martin McKeaveney Date: Wed, 15 Jan 2025 15:30:16 +0000 Subject: [PATCH 1/2] Update stale_bot.yml --- .github/workflows/stale_bot.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/stale_bot.yml b/.github/workflows/stale_bot.yml index 411a70a463..6b4a0329cf 100644 --- a/.github/workflows/stale_bot.yml +++ b/.github/workflows/stale_bot.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/stale@v8 with: days-before-stale: 330 - operations-per-run: 1 + operations-per-run: 30 # stale rules for PRs days-before-pr-stale: 7 stale-issue-label: stale @@ -21,7 +21,7 @@ jobs: - uses: actions/stale@v8 with: - operations-per-run: 3 + operations-per-run: 50 # stale rules for high priority bugs days-before-stale: 30 only-issue-labels: bug,High priority @@ -30,7 +30,7 @@ jobs: - uses: actions/stale@v8 with: - operations-per-run: 3 + operations-per-run: 50 # stale rules for medium priority bugs days-before-stale: 90 only-issue-labels: bug,Medium priority @@ -39,7 +39,7 @@ jobs: - uses: actions/stale@v8 with: - operations-per-run: 3 + operations-per-run: 50 # stale rules for all bugs days-before-stale: 180 stale-issue-label: stale From 93c10cf17b817d1225270922192a73dde9fb571c Mon Sep 17 00:00:00 2001 From: Martin McKeaveney Date: Wed, 15 Jan 2025 15:49:01 +0000 Subject: [PATCH 2/2] Update stale_bot.yml --- .github/workflows/stale_bot.yml | 50 ++++++++------------------------- 1 file changed, 12 insertions(+), 38 deletions(-) diff --git a/.github/workflows/stale_bot.yml b/.github/workflows/stale_bot.yml index 6b4a0329cf..df222a8483 100644 --- a/.github/workflows/stale_bot.yml +++ b/.github/workflows/stale_bot.yml @@ -8,41 +8,15 @@ jobs: stale: runs-on: ubuntu-latest steps: - - uses: actions/stale@v8 - with: - days-before-stale: 330 - operations-per-run: 30 - # stale rules for PRs - days-before-pr-stale: 7 - stale-issue-label: stale - exempt-pr-labels: pinned,security,roadmap - days-before-pr-close: 7 - days-before-issue-close: 30 - - - uses: actions/stale@v8 - with: - operations-per-run: 50 - # stale rules for high priority bugs - days-before-stale: 30 - only-issue-labels: bug,High priority - stale-issue-label: warn - days-before-close: 30 - - - uses: actions/stale@v8 - with: - operations-per-run: 50 - # stale rules for medium priority bugs - days-before-stale: 90 - only-issue-labels: bug,Medium priority - stale-issue-label: warn - days-before-close: 30 - - - uses: actions/stale@v8 - with: - operations-per-run: 50 - # stale rules for all bugs - days-before-stale: 180 - stale-issue-label: stale - only-issue-labels: bug - stale-issue-message: "This issue has been automatically marked as stale because it has not had any activity for six months." - days-before-close: 30 + - uses: actions/stale@v8 + with: + # Issues + days-before-stale: 180 + stale-issue-label: stale + days-before-close: 30 + stale-issue-message: "This issue has been automatically marked as stale as there has been no activity for 6 months." + # Pull requests + days-before-pr-stale: 7 + days-before-pr-close: 14 + exempt-pr-labels: pinned,security,roadmap + operations-per-run: 100