forked from google/transit
-
Notifications
You must be signed in to change notification settings - Fork 0
24 lines (21 loc) · 890 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
24
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '0 4 * * *'
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 automatically marked as stale because of lack of recent activity. It may be closed manually after one month of inactivity. Thank you for your contributions.'
stale-issue-label: 'Status: Stale'
days-before-issue-stale: 365
days-before-issue-close: -1
stale-pr-message: 'This pull request has been automatically marked as stale because of lack of recent activity. It may be closed manually after one month of inactivity. Thank you for your contributions.'
stale-pr-label: 'Status: Stale'
days-before-pr-stale: 90
days-before-pr-close: -1