This repository was archived by the owner on Jun 13, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +60
-0
lines changed Expand file tree Collapse file tree 1 file changed +60
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ # Configuration for probot-stale - https://github.com/probot/stale
3
+
4
+ # Number of days of inactivity before an Issue or Pull Request becomes stale
5
+ daysUntilStale : 90
6
+
7
+ # Number of days of inactivity before an Issue or Pull Request with the stale
8
+ # label is closed. Set to false to disable. If disabled, issues still need to be
9
+ # closed manually, but will remain marked as stale.
10
+ daysUntilClose : 30
11
+
12
+ # Only issues or pull requests with all of these labels are check if stale.
13
+ # Defaults to `[]` (disabled)
14
+ onlyLabels : []
15
+
16
+ # Issues or Pull Requests with these labels will never be considered stale. Set
17
+ # to `[]` to disable
18
+ exemptLabels :
19
+ - pinned
20
+ - security
21
+ - planned
22
+ - priority/critical
23
+ - verified
24
+
25
+ # Set to true to ignore issues in a project (defaults to false)
26
+ exemptProjects : false
27
+
28
+ # Set to true to ignore issues in a milestone (defaults to false)
29
+ exemptMilestones : true
30
+
31
+ # Set to true to ignore issues with an assignee (defaults to false)
32
+ exemptAssignees : false
33
+
34
+ # Label to use when marking as stale
35
+ staleLabel : lifecycle/stale
36
+
37
+ # Limit the number of actions per hour, from 1-30. Default is 30
38
+ limitPerRun : 30
39
+
40
+ pulls :
41
+ markComment : |-
42
+ PRs go stale after 90 days of inactivity.
43
+ If there is no further activity, the PR will be closed in another 30 days.
44
+
45
+ unmarkComment : >-
46
+ This pull request is no longer stale.
47
+
48
+ closeComment : >-
49
+ This pull request has been closed due to inactivity.
50
+
51
+ issues :
52
+ markComment : |-
53
+ Issues go stale after 90 days of inactivity.
54
+ If there is no further activity, the issue will be closed in another 30 days.
55
+
56
+ unmarkComment : >-
57
+ This issue is no longer stale.
58
+
59
+ closeComment : >-
60
+ This issue has been closed due to inactivity.
You can’t perform that action at this time.
0 commit comments