22 lines
883 B
YAML
22 lines
883 B
YAML
# Number of days of inactivity before an issue becomes stale
|
|
daysUntilStale: 180
|
|
# Number of days of inactivity before a stale issue is closed
|
|
daysUntilClose: 30
|
|
# Issues with these labels will never be considered stale
|
|
exemptLabels: [ "enhancement" ]
|
|
# Label to use when marking an issue as stale
|
|
staleLabel: stale
|
|
# Comment to post when marking an issue as stale. Set to `false` to disable
|
|
markComment: |
|
|
Hey there!
|
|
|
|
This issue was inactive for a long time and will be automatically closed in 30 days if there isn't any further activity. We therefore assume that the user has lost interest or resolved the problem on their own.
|
|
|
|
Don't worry though; if this is an error, let us know with a comment and we'll be happy to reopen the issue.
|
|
|
|
Thanks!
|
|
# Comment to post when closing a stale issue. Set to `false` to disable
|
|
closeComment: false
|
|
# Process only issues
|
|
only: issues
|