forked from metabase/metabase
-
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.
Add probot/stale config (metabase#11740)
- Loading branch information
Showing
1 changed file
with
24 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,24 @@ | ||
# For now we want to only check for stale pull requests | ||
only: pulls | ||
|
||
# Number of days of inactivity before an issue becomes stale | ||
daysUntilStale: 60 | ||
|
||
# Number of days of inactivity before a stale issue is closed | ||
daysUntilClose: 7 | ||
|
||
# Issues with these labels will never be considered stale | ||
exemptLabels: | ||
- pinned | ||
- security | ||
|
||
# Comment to post when marking an issue as stale. Set to `false` to disable | ||
markComment: > | ||
This issue was automatically marked as stale due to a lack of recent activity. | ||
This isn't a criticism of the PR, just an attempt to keep the PR queue in a happier state. | ||
If you'd like to bring this PR back to the attention of the folks on the Metabase team, just comment | ||
to prevent it from being closed. | ||
# Comment to post when closing a stale issue. Set to `false` to disable | ||
closeComment: false |