Skip to content

Commit a39d094

Browse files
authored
Update stale-issues.yaml
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, since auto-close 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>
1 parent 3db4525 commit a39d094

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/stale-issues.yaml

Lines changed: 6 additions & 7 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 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.'
17-
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.'
18-
exempt-issue-labels: bug,enhancement
19-
exempt-pr-labels: bug,enhancement
20-
days-before-stale: 60
21-
days-before-close: 10
16+
stale-issue-message: '@qualcomm-linux/camera-driver.maint This issue has been marked as stale due to 30 days of inactivity.'
17+
stale-pr-message: '@qualcomm-linux/camera-driver.maint This pull request has been marked as stale due to 30 days of inactivity.'
18+
19+
days-before-stale: 30
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)