-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Kevin Delisle
committed
Nov 14, 2017
1 parent
b8bd59f
commit 8bf90f8
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# 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: | ||
- planning | ||
- committed | ||
- in-progress | ||
- pinned | ||
- security | ||
- critical | ||
- p1 | ||
- major | ||
# 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: > | ||
This issue has been marked stale because it has not seen activity within | ||
six months. If you believe this to be in error, please contact one of the code owners, | ||
listed in the `CODEOWNERS` file at the top-level of this repository. | ||
This issue will be closed within 30 days of being stale. | ||
# Comment to post when closing a stale issue. Set to `false` to disable | ||
closeComment: > | ||
This issue has been closed due to continued inactivity. Thank you for your understanding. | ||
If you believe this to be in error, please contact one of the code owners, | ||
listed in the `CODEOWNERS` file at the top-level of this repository. |