Skip to content

Commit 3e3ddae

Browse files
authored
Merge pull request #640 from Azure/canary
Canary
2 parents 69f50ff + 7b5338d commit 3e3ddae

File tree

1 file changed

+54
-21
lines changed

1 file changed

+54
-21
lines changed

.github/policies/resourceManagement.yml

+54-21
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ configuration:
7070
# Add Needs-Triage label to new issues
7171
- addLabel:
7272
label: Needs-Triage
73+
# Apply project-specific labels based on issue title keywords
7374
- if:
7475
# Identifiy if the issue title contains the word "arcbox"
7576
- titleContains:
@@ -133,6 +134,7 @@ configuration:
133134
# Handles issue closing, reopening, and duplicate detection
134135
# ---------------------------------------------------------------------------
135136
- description: Clear labels when an issue is closed
137+
# Auto-cleanup - removes working labels and adds resolution label
136138
triggerOnOwnActions: false
137139
if:
138140
- payloadType: Issues
@@ -154,6 +156,7 @@ configuration:
154156
We've closed this issue because it has been addressed. If you believe further discussion is needed, please add a comment "`/unresolve`" to reopen the issue.
155157
156158
- description: Reopen unresolved issues
159+
# Triggered by the keyword "/unresolve" in comments
157160
triggerOnOwnActions: false
158161
if:
159162
- payloadType: Issue_Comment
@@ -179,16 +182,19 @@ configuration:
179182
- reopenIssue
180183

181184
- description: Add needs attention label to reopened issues
185+
# Ensures reopened issues get proper attention from maintainers
182186
triggerOnOwnActions: false
183187
if:
184188
- payloadType: Issues
185189
- isAction:
186190
action: Reopened
187191
then:
192+
# Clear resolution labels when an issue is reopened
188193
- removeLabel:
189194
label: Issue-Addressed
190195
- removeLabel:
191196
label: Resolution-Duplicate
197+
# Mark for team attention
192198
- addLabel:
193199
label: Needs-Attention
194200
- addReply:
@@ -197,11 +203,16 @@ configuration:
197203
198204
We've reopened this issue because we need more information from you or we identified it is not completely resolved.
199205
206+
# ---------------------------------------------------------------------------
207+
# DUPLICATE ISSUE HANDLING
208+
# Manages issues identified as duplicates in comments
209+
# ---------------------------------------------------------------------------
200210
- description: Add Resolution-Duplicate label to issues or PRs that are identified as duplicates
201211
triggerOnOwnActions: false
202212
if:
203213
- payloadType: Issue_Comment
204214
- and:
215+
# Look for various forms of "duplicate" in comments
205216
- commentContains:
206217
pattern: "(?i)duplicat(e|ed|ing)?"
207218
isRegex: True
@@ -213,6 +224,7 @@ configuration:
213224
We've identified this as a duplicate of another issue or PR that already exists. This specific instance is being closed in favor of the linked issue. Please add your 👍 to the other issue to raise its priority. Thanks for your contribution!
214225
215226
- closeIssue
227+
# Remove all working labels
216228
- removeLabel:
217229
label: Needs-Triage
218230
- removeLabel:
@@ -221,71 +233,92 @@ configuration:
221233
label: Needs-Feedback-Hub
222234
- removeLabel:
223235
label: Needs-Author-Feedback
236+
# Add resolution label
224237
- addLabel:
225238
label: Resolution-Duplicate
226239

227240
# ===========================================================================
228241
# SCHEDULED SEARCHES
229-
# Periodic tasks that run on defined schedules
242+
# Periodic tasks that run on defined schedules to maintain repository hygiene
230243
# ===========================================================================
231244
scheduledSearches:
232-
- description: Close stale issues
245+
# ---------------------------------------------------------------------------
246+
# STALE ISSUE MANAGEMENT
247+
# Automatically closes issues that need feedback but have no activity
248+
# ---------------------------------------------------------------------------
249+
- description: Close stale issues. Issues that have not had any activity for 7 days and are labeled with Needs-Author-Feedback and No-Recent-Activity will be closed.
233250
frequencies:
234-
- daily:
235-
time: 1:0 # Runs at 1:00 AM daily
251+
- hourly:
252+
hour: 6
236253
filters:
254+
# Only target issues that are open and need author feedback
255+
# Exclude issues that are labeled with Feature-Request or Upstream-Bug-Issue
237256
- isIssue
238257
- isOpen
239258
- hasLabel:
240259
label: Needs-Author-Feedback
241260
- hasLabel:
242261
label: No-Recent-Activity
262+
# Exclude issues that may need longer response times
263+
- isNotLabeledWith:
264+
label: Feature-Request
265+
- isNotLabeledWith:
266+
label: Upstream-Bug-Issue
243267
- noActivitySince:
244-
days: 21 # 3 weeks of inactivity
268+
days: 7
245269
actions:
246270
- closeIssue
247-
248-
- description: Add no recent activity label to issues
271+
# Add closure label for tracking
272+
- addLabel:
273+
label: Close-Stale
274+
# Remove triage label as it's no longer needed
275+
- removeLabel:
276+
label: Needs-Triage
277+
278+
- description: Add No-Recent-Activity label to issues that have not had any activity for 7 days
279+
# First warning stage before closing stale issues
249280
frequencies:
250281
- hourly:
251-
hour: 6 # Runs at 6:00 every hour
282+
hour: 6
252283
filters:
253284
- isIssue
254285
- isOpen
255286
- hasLabel:
256287
label: Needs-Author-Feedback
257288
- noActivitySince:
258-
days: 7 # 1 week of inactivity
289+
days: 7
259290
- isNotLabeledWith:
260291
label: No-Recent-Activity
261292
actions:
293+
# Mark as inactive
262294
- addLabel:
263295
label: No-Recent-Activity
296+
# Notify author with clear timeline for resolution
264297
- addReply:
265298
reply: >-
266-
Hello @${issueAuthor},
267-
268-
We're sending this friendly reminder because we haven't heard back from you in a while and we need more information about this issue to help address it. Please be sure to give us your input within the next **7 days**. If we don't hear back from you within **14 days** of this comment the issue will be automatically closed. Thank you!
269-
270-
- description: '[Resolve Workflow] Close Addressed Issues'
299+
Hello @${issueAuthor},
300+
301+
we're sending this friendly reminder because we haven't heard back from you in a while and we need more information about this issue to help address it. Please be sure to give us your input within the next **7 days**. If we don't hear back from you within **7 days** of this comment the issue will be automatically closed. Thank you!
302+
303+
- description: Close issues that have not had any activity for 7 days and are labeled with Issue-Addressed
304+
# Auto-close resolved issues after waiting period for any objections
271305
frequencies:
272306
- hourly:
273-
hour: 6 # Runs at 6:00 every hour
307+
hour: 6
274308
filters:
275309
- isIssue
276310
- isOpen
277311
- hasLabel:
278312
label: Issue-Addressed
279313
- noActivitySince:
280-
days: 7 # 1 week of inactivity
314+
days: 7
281315
actions:
282-
- addReply:
316+
# Final notification before closure
317+
- addReply:
283318
reply: >-
284-
285-
Hello @${issueAuthor},
286-
287-
Since you haven't asked that we "`/unresolve`" the issue, we'll close this out. If you believe further discussion is needed, please add a comment "`/unresolve`" to reopen the issue.
319+
Hello @${issueAuthor}, since you haven’t asked that we “`/unresolve`” the issue, we’ll close this out. If you believe further discussion is needed, please add a comment “`/unresolve`” to reopen the issue.
288320
321+
# Close the issue after waiting period
289322
- closeIssue
290323

291324
# Configuration for handling failures or success events

0 commit comments

Comments
 (0)