forked from abrasive/shairport
-
-
Notifications
You must be signed in to change notification settings - Fork 574
22 lines (19 loc) · 799 Bytes
/
stale.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '0 0 * * *'
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
stale-issue-message: 'This issue has been inactive for 28 days so will be closed 7 days from now. To prevent this, please remove the "stale" label or post a comment.'
stale-pr-message: 'This PR has been inactive for 28 days so will be closed 7 days from now. To prevent this, please remove the "stale" label or post a comment.'
operations-per-run: 100
# These are the defaults at the time of writing. https://github.com/marketplace/actions/close-stale-issues
# days-before-stale: 28
# days-before-close: 7