Skip to content

Commit 3c166c0

Browse files
committed
Add stale.yml configuration
1 parent 6f15e45 commit 3c166c0

File tree

1 file changed

+62
-0
lines changed

1 file changed

+62
-0
lines changed

.github/stale.yml

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# Configuration for probot-stale - https://github.com/probot/stale
2+
3+
# Number of days of inactivity before an Issue or Pull Request becomes stale
4+
daysUntilStale: 60
5+
6+
# Number of days of inactivity before an Issue or Pull Request with the stale label is closed.
7+
# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
8+
daysUntilClose: 7
9+
10+
# Only issues or pull requests with all of these labels are check if stale. Defaults to `[]` (disabled)
11+
onlyLabels: []
12+
13+
# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
14+
exemptLabels:
15+
- pinned
16+
- bug
17+
- "feature request"
18+
- "typescript"
19+
20+
# Set to true to ignore issues in a project (defaults to false)
21+
exemptProjects: false
22+
23+
# Set to true to ignore issues in a milestone (defaults to false)
24+
exemptMilestones: false
25+
26+
# Set to true to ignore issues with an assignee (defaults to false)
27+
exemptAssignees: false
28+
29+
# Label to use when marking as stale
30+
staleLabel: wontfix
31+
32+
# Comment to post when marking as stale. Set to `false` to disable
33+
markComment: >
34+
This issue has been automatically marked as stale because it has not had
35+
recent activity. It will be closed if no further activity occurs. Thank you
36+
for your contributions.
37+
38+
# Comment to post when removing the stale label.
39+
# unmarkComment: >
40+
# Your comment here.
41+
42+
# Comment to post when closing a stale Issue or Pull Request.
43+
# closeComment: >
44+
# Your comment here.
45+
46+
# Limit the number of actions per hour, from 1-30. Default is 30
47+
limitPerRun: 30
48+
49+
# Limit to only `issues` or `pulls`
50+
# only: issues
51+
52+
# Optionally, specify configuration settings that are specific to just 'issues' or 'pulls':
53+
# pulls:
54+
# daysUntilStale: 30
55+
# markComment: >
56+
# This pull request has been automatically marked as stale because it has not had
57+
# recent activity. It will be closed if no further activity occurs. Thank you
58+
# for your contributions.
59+
60+
# issues:
61+
# exemptLabels:
62+
# - confirmed

0 commit comments

Comments
 (0)