From ce8038c414d8c04eb78c8a7663c66ac29fa4c09b Mon Sep 17 00:00:00 2001 From: Sandhya Adavikolanu Date: Mon, 1 Jun 2026 14:56:52 -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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/stale-issues.yaml b/.github/workflows/stale-issues.yaml index 1c8e5c5..fa1fc0e 100644 --- a/.github/workflows/stale-issues.yaml +++ b/.github/workflows/stale-issues.yaml @@ -13,11 +13,11 @@ jobs: steps: - uses: actions/stale@v10 with: - stale-issue-message: '@qualcomm-linux/kernel-config This issue has been marked as stale due to 30 days of inactivity.' - stale-pr-message: '@qualcomm-linux/kernel-config This pull request has been marked as stale due to 30 days of inactivity.' + stale-issue-message: '@qualcomm-linux/kernel-config This issue has been marked as stale due to 30 days of inactivity and will automatically close after an additional 5 days.' + stale-pr-message: '@qualcomm-linux/kernel-config This pull request has been marked as stale due to 30 days of inactivity and will automatically close after an additional 5 days.' days-before-stale: 30 - days-before-close: -1 + days-before-close: 5 remove-stale-when-updated: true remove-issue-stale-when-updated: true remove-pr-stale-when-updated: true