From a071229a2edd7bc28ed2cd5bcea65655aff8e47b Mon Sep 17 00:00:00 2001 From: Sandhya Adavikolanu Date: Tue, 10 Feb 2026 20:40:30 -0800 Subject: [PATCH] Update stale-issues MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit github-actions: align stale workflow with OSSOps recommendations This update brings the stale-issues GitHub workflow into alignment with OSSOps-recommended settings. The changes improve the handling of stale issues and pull requests, ensure maintainers are notified when items become stale, and prevent premature closure of open work. These updates help maintain consistent triage behavior across Qualcomm hosted open-source projects. Changes included: - Set a 30-day threshold for marking issues and PRs as stale. - Notify the appropriate team when an item becomes stale. - Prevent automatic closure of stale issues and PRs. - Remove exemption labels for issues and PRs, as exemptions are only useful when auto‑closing is enabled, and auto‑closing is intentionally disabled. - Improve consistency with Qualcomm open-source automation templates. These changes enhance project hygiene and ensure the workflow follows Qualcomm’s open-source best practices. Signed-off-by: Sandhya Adavikolanu --- .github/workflows/stale-issues.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/stale-issues.yaml b/.github/workflows/stale-issues.yaml index 29d426d1a..1e2f56e42 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.' - stale-pr-message: 'This pull request has been marked as stale due to 60 days of inactivity.' - exempt-issue-labels: bug,enhancement - exempt-pr-labels: bug,enhancement - days-before-stale: 60 + stale-issue-message: '@qualcomm-linux/video-driver.triage This issue has been marked as stale due to 30 days of inactivity.' + stale-pr-message: '@qualcomm-linux/video-driver.triage This pull request has been marked as stale due to 30 days of inactivity.' + + days-before-stale: 30 days-before-close: -1 remove-stale-when-updated: true remove-issue-stale-when-updated: true - remove-pr-stale-when-updated: true \ No newline at end of file + + remove-pr-stale-when-updated: true