-
Notifications
You must be signed in to change notification settings - Fork 4
/
sample.toml
47 lines (43 loc) · 1.2 KB
/
sample.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
owner = "login"
repositoryName = "arepository"
# "rules" allow to close issues
[[rules]]
# search issues with those labels (AND)
includedLabels = ["label01", "label02"]
# exclude issues with those labels (AND)
excludedLabels = ["label03"]
message = """\
I'll close the issue due to inactivity but feel free to re-open if needed.
"""
# number of days since the issue creation
daysSinceCreation = 360
# number of days since the last issue update
daysSinceUpdate = 180
[[rules]]
includedLabels = ["label04"]
excludedLabels = []
message = """\
I'll close the issue due to inactivity but feel free to re-open if needed.
"""
daysSinceCreation = 90
daysSinceUpdate = 90
[[rules]]
# Disable a rule
disable = true
includedLabels = ["label05"]
excludedLabels = []
message = """\
I'll close the issue due to inactivity but feel free to re-open if needed.
"""
daysSinceCreation = 90
daysSinceUpdate = 90
# "locks" allow to lock issues
[[locks]]
# number of days since the last issue update
daysSinceUpdate = 90
# exclude issues with those labels (AND)
excludedLabels = ["label8"]
# label to add on the issue (can be empty)
label = "label7"
# Disable a rule
disable = false