-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathresourceManagement.yml
165 lines (165 loc) · 4.88 KB
/
resourceManagement.yml
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
id:
name: GitOps.PullRequestIssueManagement
description: GitOps.PullRequestIssueManagement primitive
owner:
resource: repository
disabled: false
where:
configuration:
resourceManagementConfiguration:
scheduledSearches:
- description: Add Stale Label
frequencies:
- daily:
time: 16:0
filters:
- isPullRequest
- noActivitySince:
days: 30
- isOpen
actions:
- addLabel:
label: stale
- addLabel:
label: help wanted
- description: "[Idle Issue Management] Notify about 'needs reproduction' issues"
frequencies:
- weekday:
day: Monday
time: 0:0
- weekday:
day: Tuesday
time: 0:0
- weekday:
day: Wednesday
time: 0:0
- weekday:
day: Thursday
time: 0:0
- weekday:
day: Friday
time: 0:0
filters:
- isIssue
- isOpen
- hasLabel:
label: needs reproduction
- noActivitySince:
days: 3
actions:
- addReply:
reply: This issue has been automatically marked as stale because it has been marked as requiring author feedback but has not had any activity for **3 days**. It will be closed if no further activity occurs **within 2 days of this comment**. If it *is* closed, feel free to comment when you are able to provide the additional information and we will re-investigate.
- addLabel:
label: stale
- description: "[Idle Issue Management] Notify about 'needs info' issues"
frequencies:
- weekday:
day: Monday
time: 0:0
- weekday:
day: Tuesday
time: 0:0
- weekday:
day: Wednesday
time: 0:0
- weekday:
day: Thursday
time: 0:0
- weekday:
day: Friday
time: 0:0
filters:
- isIssue
- isOpen
- hasLabel:
label: needs info
- noActivitySince:
days: 3
actions:
- addReply:
reply: This issue has been automatically marked as stale because it has been marked as requiring author feedback but has not had any activity for **3 days**. It will be closed if no further activity occurs **within 2 days of this comment**. If it *is* closed, feel free to comment when you are able to provide the additional information and we will re-investigate.
- addLabel:
label: stale
- description: "[Idle Issue Management] Close stale 'needs reproduction' issues"
frequencies:
- weekday:
day: Monday
time: 0:0
- weekday:
day: Tuesday
time: 0:0
- weekday:
day: Wednesday
time: 0:0
- weekday:
day: Thursday
time: 0:0
- weekday:
day: Friday
time: 0:0
filters:
- isIssue
- isOpen
- hasLabel:
label: stale
- noActivitySince:
days: 2
actions:
- closeIssue
- addReply:
reply: This issue has been automatically closed because it has been marked as stale.
eventResponderTasks:
- if:
- payloadType: Issues
- labelAdded:
label: needs reproduction
then:
- addReply:
reply: Hi @${issueAuthor}. We have added the "needs reproduction" label to this issue, which indicates that we cannot take further action. This issue will be closed automatically in 5 days if we do not hear back from you by then - please feel free to re-open it if you come back to this issue after that time.
description: Add comment when 'needs reproduction' is applied to issue
- if:
- payloadType: Issue_Comment
- isAction:
action: Created
- isOpen
- hasLabel:
label: needs info
- not:
activitySenderHasPermission:
permission: Admin
- not:
activitySenderHasPermission:
permission: Write
then:
- removeLabel:
label: needs info
description: Remove needs info label
- if:
- payloadType: Issue_Comment
- isAction:
action: Created
- isOpen
- hasLabel:
label: needs reproduction
- not:
activitySenderHasPermission:
permission: Admin
- not:
activitySenderHasPermission:
permission: Write
then:
- removeLabel:
label: needs reproduction
description: Remove needs reproduction label
- if:
- payloadType: Issues
- hasLabel:
label: stale
- isActivitySender:
issueAuthor: True
then:
- removeLabel:
label: stale
description: Remove stale label
onFailure:
onSuccess: