This repository has been archived by the owner on May 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #421 from jmlrt/probot
[botelastic] add probot config to manage stale issues/pr
- Loading branch information
Showing
1 changed file
with
33 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,33 @@ | ||
--- | ||
# Number of days of inactivity before an issue becomes stale | ||
daysUntilStale: 90 | ||
|
||
# Number of days of inactivity before an stale issue is closed | ||
daysUntilClose: 30 | ||
|
||
# Label to use when marking an issue as stale | ||
staleLabel: triage/stale | ||
|
||
issues: | ||
# Comment to post when marking an issue as stale. | ||
markComment: > | ||
This issue has been automatically marked as stale because it has not had | ||
recent activity. It will be closed if no further activity occurs. Thank | ||
you for your contributions. | ||
# Comment to post when closing a stale issue. | ||
closeComment: > | ||
This issue has been automatically closed because it has not had recent | ||
activity since being marked as stale. | ||
pulls: | ||
# Comment to post when marking a PR as stale. | ||
markComment: > | ||
This PR has been automatically marked as stale because it has not had | ||
recent activity. It will be closed if no further activity occurs. Thank you | ||
for your contributions. | ||
To track this PR (even if closed), please open a corresponding issue if one | ||
does not already exist. | ||
# Comment to post when closing a stale PR. | ||
closeComment: > | ||
This PR has been automatically closed because it has not had recent | ||
activity since being marked as stale. | ||
Please reopen when work resumes. |