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