1# Number of days of inactivity before an issue becomes stale
2daysUntilStale: 28
3# Number of days of inactivity before a stale issue is closed
4# Set to false to disable. If disabled, issues still need to be closed
5# manually, but will remain marked as stale.
6daysUntilClose: false
7# Issues with these labels will never be considered stale
8exemptLabels:
9  - v2
10  - enhancement
11  - good first issue
12  - feature-request
13  - doc
14  - bug
15  - not-stale
16# Label to use when marking an issue as stale
17staleLabel: stale
18# Comment to post when marking an issue as stale. Set to `false` to disable
19markComment: >
20  This issue has been automatically marked as stale because it has not had
21  recent activity. Thank you for your contributions.
22# Comment to post when closing a stale issue. Set to `false` to disable
23closeComment: false
24