You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This folder contains workflows that are helpful for maintaining a smooth and secure development process. The workflows should be enabled for open-source projects.
3
+
4
+
Workflows:
5
+
1.`qcom-preflight-checks.yml` - This workflow runs several preflight checks, including copyight, email, repolinter, and security checks. See [qualcomm/qcom-actions](https://github.com/qualcomm/qcom-actions)
6
+
2.`stale-issues.yaml` - This workflow will periodically run every 30 days to check for stalled issues and PRs. If the workflow detects any stalled issues and/or PRs, it will automatically leave just a comment to draw attention.
name: 'Close stale issues and pull requests with no recent activity'
2
+
on:
3
+
schedule:
4
+
- cron: "30 1 * * *"
5
+
6
+
permissions:
7
+
issues: write
8
+
pull-requests: write
9
+
10
+
jobs:
11
+
stale:
12
+
runs-on: ubuntu-latest
13
+
steps:
14
+
- uses: actions/stale@v9
15
+
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.'
0 commit comments