Merge pull request #11149 from daleckystepan/get_rid_of_double_math_512kb
[betaflight.git] / .github / workflows / stale.yaml
blob74c4c2cd3deb8739c40c818fe999276360527438
1 name: 'Close stale issues'
3 on:
4   schedule:
5   - cron: "30 4 * * *"
7 jobs:
8   stale:
9     name: 'Check and close stale issues'
10     runs-on: ubuntu-latest
11     steps:
12     - uses: actions/stale@v3
13       with:
14         repo-token: ${{ secrets.GITHUB_TOKEN }}
15         operations-per-run: 30
16         days-before-stale: 30
17         days-before-close: 7
18         stale-issue-message: >
19           This issue has been automatically marked as stale because it
20           has not had recent activity. It will be closed if no further activity occurs
21           within a week.
22         close-issue-message: 'Issue closed automatically as inactive.'        
23         exempt-issue-labels: 'BUG,Feature Request,Pinned'
24         stale-issue-label: 'Inactive'
25         stale-pr-message: >
26           This pull request has been automatically marked as stale because it
27           has not had recent activity. It will be closed if no further activity occurs
28           within a week.
29         close-pr-message: 'Pull request closed automatically as inactive.'
30         exempt-pr-labels: 'Pinned'
31         stale-pr-label: 'Inactive'
32         exempt-all-milestones: true