From 20f6abc171eac851f337f8f98472881dbf894ac0 Mon Sep 17 00:00:00 2001 From: Sandhya Adavikolanu Date: Mon, 1 Jun 2026 17:05:09 -0700 Subject: [PATCH] Update Stale PR Workflow: Auto-close after 30+5 days Update Stale PR Workflow: Auto-close after 30+5 days Updates the Stale GitHub Actions workflow to mark PRs and issues as stale after 30 days of inactivity and automatically close them after an additional 5 days. This aligns with PdM's request to ensure stale PRs and issues that may no longer be needed are closed, making it easier to track progress and milestones. Signed-off-by: Sandhya Adavikolanu --- .github/workflows/stale-issues.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/stale-issues.yaml b/.github/workflows/stale-issues.yaml index e84b54b..3dea213 100644 --- a/.github/workflows/stale-issues.yaml +++ b/.github/workflows/stale-issues.yaml @@ -11,14 +11,14 @@ jobs: stale: runs-on: ubuntu-latest steps: - - uses: actions/stale@v9 + - uses: actions/stale@v10 with: - stale-issue-message: 'This issue has been marked as stale due to 60 days of inactivity. To prevent automatic closure in 10 days, remove the stale label or add a comment. You can reopen a closed issue at any time.' - stale-pr-message: 'This pull request has been marked as stale due to 60 days of inactivity. To prevent automatic closure in 10 days, remove the stale label or add a comment. You can reopen a closed pull request at any time.' + stale-issue-message: 'This issue has been marked as stale due to 30 days of inactivity and will automatically close after an additional 5 days. To prevent automatic closure in 5 days, remove the stale label or add a comment. You can reopen a closed issue at any time.' + stale-pr-message: 'This pull request has been marked as stale due to 30 days of inactivity and will automatically close after an additional 5 days. To prevent automatic closure in 5 days, remove the stale label or add a comment. You can reopen a closed pull request at any time.' exempt-issue-labels: bug,enhancement exempt-pr-labels: bug,enhancement - days-before-stale: 60 - days-before-close: 10 + days-before-stale: 30 + days-before-close: 5 remove-stale-when-updated: true remove-issue-stale-when-updated: true remove-pr-stale-when-updated: true