|
@@ -0,0 +1,54 @@
|
|
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: 45
|
|
5
|
+
|
|
6
|
+# Number of days of inactivity before a stale Issue or Pull Request 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
|
+# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
|
|
11
|
+exemptLabels:
|
|
12
|
+ - "type: accepted/enhancement"
|
|
13
|
+ - "user: looking for contributors"
|
|
14
|
+ - "📌 pinned"
|
|
15
|
+
|
|
16
|
+# Set to true to ignore issues in a project (defaults to false)
|
|
17
|
+exemptProjects: false
|
|
18
|
+
|
|
19
|
+# Set to true to ignore issues in a milestone (defaults to false)
|
|
20
|
+exemptMilestones: true
|
|
21
|
+
|
|
22
|
+# Label to use when marking as stale
|
|
23
|
+staleLabel: "🏚 stale"
|
|
24
|
+
|
|
25
|
+# Comment to post when marking as stale. Set to `false` to disable
|
|
26
|
+markComment: >
|
|
27
|
+ This issue has been automatically marked as stale because it has not had
|
|
28
|
+ recent activity. It will be closed if no further activity occurs.
|
|
29
|
+
|
|
30
|
+ If you believe the issue is still relevant, please test on the latest version and report back.
|
|
31
|
+ Thank you for your contributions.
|
|
32
|
+# Comment to post when removing the stale label.
|
|
33
|
+# unmarkComment: >
|
|
34
|
+# Your comment here.
|
|
35
|
+
|
|
36
|
+# Comment to post when closing a stale Issue or Pull Request.
|
|
37
|
+closeComment: >
|
|
38
|
+ The issue has been closed for inactivity.
|
|
39
|
+# Limit the number of actions per hour, from 1-30. Default is 30
|
|
40
|
+limitPerRun: 30
|
|
41
|
+
|
|
42
|
+# Limit to only `issues` or `pulls`
|
|
43
|
+# only: issues
|
|
44
|
+
|
|
45
|
+# Optionally, specify configuration settings that are specific to just 'issues' or 'pulls':
|
|
46
|
+pulls:
|
|
47
|
+ daysUntilStale: 45
|
|
48
|
+ markComment: >
|
|
49
|
+ This pull request has been automatically marked as stale because it has not had
|
|
50
|
+ recent activity. It will be closed if no further activity occurs. Thank you
|
|
51
|
+ for your contributions.
|
|
52
|
+# issues:
|
|
53
|
+# exemptLabels:
|
|
54
|
+# - confirmed
|