Skip to content

Commit b62f47a

Browse files
authored
Add Resource Management policy (#50)
Context: https://github.com/CommunityToolkit/Maui/blob/938fb20ea70c548e090d11371a96c106791893d7/.github/policies/resourceManagement.yml Brings in the Resource Management policy from CommunityToolkit/Maui.
1 parent 4473f07 commit b62f47a

File tree

1 file changed

+104
-0
lines changed

1 file changed

+104
-0
lines changed
+104
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
id:
2+
name: GitOps.PullRequestIssueManagement
3+
description: GitOps.PullRequestIssueManagement primitive
4+
owner:
5+
resource: repository
6+
disabled: false
7+
where:
8+
configuration:
9+
resourceManagementConfiguration:
10+
scheduledSearches:
11+
- description: Add Stale Label
12+
frequencies:
13+
- daily:
14+
time: 16:0
15+
filters:
16+
- isPullRequest
17+
- noActivitySince:
18+
days: 30
19+
- isOpen
20+
actions:
21+
- addLabel:
22+
label: stale
23+
- addLabel:
24+
label: help wanted
25+
- description: "[Idle Issue Management] Notify about 'needs reproduction' issues"
26+
frequencies:
27+
- weekday:
28+
day: Monday
29+
time: 0:0
30+
- weekday:
31+
day: Tuesday
32+
time: 0:0
33+
- weekday:
34+
day: Wednesday
35+
time: 0:0
36+
- weekday:
37+
day: Thursday
38+
time: 0:0
39+
- weekday:
40+
day: Friday
41+
time: 0:0
42+
filters:
43+
- isIssue
44+
- isOpen
45+
- hasLabel:
46+
label: needs reproduction
47+
- noActivitySince:
48+
days: 3
49+
actions:
50+
- addReply:
51+
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.
52+
- addLabel:
53+
label: stale
54+
- description: "[Idle Issue Management] Close stale 'needs reproduction' issues"
55+
frequencies:
56+
- weekday:
57+
day: Monday
58+
time: 0:0
59+
- weekday:
60+
day: Tuesday
61+
time: 0:0
62+
- weekday:
63+
day: Wednesday
64+
time: 0:0
65+
- weekday:
66+
day: Thursday
67+
time: 0:0
68+
- weekday:
69+
day: Friday
70+
time: 0:0
71+
filters:
72+
- isIssue
73+
- isOpen
74+
- hasLabel:
75+
label: needs reproduction
76+
- hasLabel:
77+
label: stale
78+
- noActivitySince:
79+
days: 2
80+
actions:
81+
- closeIssue
82+
- addReply:
83+
reply: We haven't received a reproduction sample from you. The issue is closed.
84+
eventResponderTasks:
85+
- if:
86+
- payloadType: Issues
87+
- labelAdded:
88+
label: needs reproduction
89+
then:
90+
- addReply:
91+
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.
92+
description: Add comment when 'needs reproduction' is applied to issue
93+
- if:
94+
- payloadType: Issues
95+
- hasLabel:
96+
label: stale
97+
- isActivitySender:
98+
issueAuthor: True
99+
then:
100+
- removeLabel:
101+
label: stale
102+
description: Remove stale label
103+
onFailure:
104+
onSuccess:

0 commit comments

Comments
 (0)