This repository was archived by the owner on Oct 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Chris Wiechmann
authored
Oct 12, 2021
1 parent
802b1ad
commit 4c3dd54
Showing
1 changed file
with
44 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,44 @@ | ||
# Configuration for probot-stale - https://github.com/probot/stale | ||
|
||
# General configuration | ||
# Label to use when marking as stale | ||
staleLabel: stale | ||
|
||
# Pull request specific configuration | ||
pulls: | ||
# Number of days of inactivity before an Issue or Pull Request becomes stale | ||
daysUntilStale: 7 | ||
# Number of days of inactivity before a stale Issue or Pull Request is closed. | ||
# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale. | ||
daysUntilClose: 21 | ||
# Comment to post when marking as stale. Set to `false` to disable | ||
markComment: > | ||
This pull request has been automatically marked as stale because it has not had | ||
activity in the last 2 weeks. It will be closed in 30 days if no further activity occurs. Please | ||
feel free to give a status update now, ping for review, or re-open when it's ready. | ||
Thank you for your contributions! | ||
# Comment to post when closing a stale Issue or Pull Request. | ||
closeComment: > | ||
This pull request has been automatically closed because it has not had | ||
activity in the last 30 days. Please feel free to give a status update now, ping for review, or re-open when it's ready. | ||
Thank you for your contributions! | ||
# Limit the number of actions per hour, from 1-30. Default is 30 | ||
limitPerRun: 1 | ||
|
||
exemptLabels: | ||
- pinned | ||
- security | ||
|
||
# Issue specific configuration | ||
issues: | ||
limitPerRun: 1 | ||
daysUntilStale: 90 | ||
daysUntilClose: 30 | ||
markComment: > | ||
This issue has been automatically marked as stale because it has not had activity in the | ||
last 90 days. It will be closed in the next 30 days unless it is tagged "help wanted" or other activity | ||
occurs. Thank you for your contributions. | ||
closeComment: > | ||
This issue has been automatically closed because it has not had activity in the | ||
last month and a half. If this issue is still valid, please ping a maintainer and ask them to label it as "help wanted". | ||
Thank you for your contributions. |