-
Notifications
You must be signed in to change notification settings - Fork 104
23 lines (21 loc) · 1012 Bytes
/
stale.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: 'Close stale issues'
on:
schedule:
- cron: '0 20 * * 1'
permissions:
contents: write # only for delete-branch option
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. If the issue has been resolved since the last activity, please close the issue. Thank you for your contributions.'
stale-pr-message: 'This PR has been automatically marked as stale because it has not had recent activity. Please close the PR if it is no longer relevant. If no further activity occurs, the PR may be closed. Thank you for your contributions.'
stale-issue-label: 'wontfix'
stale-pr-label: 'Stale'
exempt-issue-labels: 'pinned,security'
exempt-pr-labels: 'pinned,security'
days-before-pr-close: -1