1 name: 'Close stale issues'
9 name: 'Check and close stale issues'
10 runs-on: ubuntu-latest
12 - uses: actions/stale@v3
14 repo-token: ${{ secrets.GITHUB_TOKEN }}
15 operations-per-run: 30
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
22 close-issue-message: 'Issue closed automatically as inactive.'
23 exempt-issue-labels: 'BUG,Feature Request,Pinned'
24 stale-issue-label: 'Inactive'
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
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