You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- description: Clear labels when an issue is closed
137
+
# Auto-cleanup - removes working labels and adds resolution label
136
138
triggerOnOwnActions: false
137
139
if:
138
140
- payloadType: Issues
@@ -154,6 +156,7 @@ configuration:
154
156
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.
155
157
156
158
- description: Reopen unresolved issues
159
+
# Triggered by the keyword "/unresolve" in comments
157
160
triggerOnOwnActions: false
158
161
if:
159
162
- payloadType: Issue_Comment
@@ -179,16 +182,19 @@ configuration:
179
182
- reopenIssue
180
183
181
184
- description: Add needs attention label to reopened issues
185
+
# Ensures reopened issues get proper attention from maintainers
182
186
triggerOnOwnActions: false
183
187
if:
184
188
- payloadType: Issues
185
189
- isAction:
186
190
action: Reopened
187
191
then:
192
+
# Clear resolution labels when an issue is reopened
188
193
- removeLabel:
189
194
label: Issue-Addressed
190
195
- removeLabel:
191
196
label: Resolution-Duplicate
197
+
# Mark for team attention
192
198
- addLabel:
193
199
label: Needs-Attention
194
200
- addReply:
@@ -197,11 +203,16 @@ configuration:
197
203
198
204
We've reopened this issue because we need more information from you or we identified it is not completely resolved.
- description: Add Resolution-Duplicate label to issues or PRs that are identified as duplicates
201
211
triggerOnOwnActions: false
202
212
if:
203
213
- payloadType: Issue_Comment
204
214
- and:
215
+
# Look for various forms of "duplicate" in comments
205
216
- commentContains:
206
217
pattern: "(?i)duplicat(e|ed|ing)?"
207
218
isRegex: True
@@ -213,6 +224,7 @@ configuration:
213
224
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!
- 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.
233
250
frequencies:
234
-
- daily:
235
-
time: 1:0# Runs at 1:00 AM daily
251
+
- hourly:
252
+
hour: 6
236
253
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
237
256
- isIssue
238
257
- isOpen
239
258
- hasLabel:
240
259
label: Needs-Author-Feedback
241
260
- hasLabel:
242
261
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
243
267
- noActivitySince:
244
-
days: 21# 3 weeks of inactivity
268
+
days: 7
245
269
actions:
246
270
- 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
249
280
frequencies:
250
281
- hourly:
251
-
hour: 6# Runs at 6:00 every hour
282
+
hour: 6
252
283
filters:
253
284
- isIssue
254
285
- isOpen
255
286
- hasLabel:
256
287
label: Needs-Author-Feedback
257
288
- noActivitySince:
258
-
days: 7# 1 week of inactivity
289
+
days: 7
259
290
- isNotLabeledWith:
260
291
label: No-Recent-Activity
261
292
actions:
293
+
# Mark as inactive
262
294
- addLabel:
263
295
label: No-Recent-Activity
296
+
# Notify author with clear timeline for resolution
264
297
- addReply:
265
298
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
271
305
frequencies:
272
306
- hourly:
273
-
hour: 6# Runs at 6:00 every hour
307
+
hour: 6
274
308
filters:
275
309
- isIssue
276
310
- isOpen
277
311
- hasLabel:
278
312
label: Issue-Addressed
279
313
- noActivitySince:
280
-
days: 7# 1 week of inactivity
314
+
days: 7
281
315
actions:
282
-
- addReply:
316
+
# Final notification before closure
317
+
- addReply:
283
318
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.
288
320
321
+
# Close the issue after waiting period
289
322
- closeIssue
290
323
291
324
# Configuration for handling failures or success events
0 commit comments