Skip to content

Commit 34d67dc

Browse files
committed
Update stale-issues
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 <sadaviko@qti.qualcomm.com> Signed-off-by: Sandhya Adavikolanu <sadaviko@qti.qualcomm.com>
1 parent be90553 commit 34d67dc

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/stale-issues.yaml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,13 @@ jobs:
1111
stale:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/stale@v9
14+
- uses: actions/stale@v10
1515
with:
16-
stale-issue-message: 'This issue has been marked as stale due to 30 days of inactivity. To prevent automatic closure in 7 days, remove the stale label or add a comment. You can reopen a closed issue at any time.'
17-
stale-pr-message: 'This pull request has been marked as stale due to 30 days of inactivity. To prevent automatic closure in 7 days, remove the stale label or add a comment. You can reopen a closed pull request at any time.'
18-
exempt-issue-labels: bug,enhancement
19-
exempt-pr-labels: bug,enhancement
16+
stale-issue-message: 'This issue has been marked as stale due to 30 days of inactivity.'
17+
stale-pr-message: 'This pull request has been marked as stale due to 30 days of inactivity.'
18+
2019
days-before-stale: 30
21-
days-before-close: 7
20+
days-before-close: -1
2221
remove-stale-when-updated: true
2322
remove-issue-stale-when-updated: true
2423
remove-pr-stale-when-updated: true

0 commit comments

Comments
 (0)