Create new stale issue workflow #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Close Stale Issues | |
description: Close stale issues that have not been updated in 30 days | |
resource: repository | |
configuration: | |
resourceManagementConfiguration: | |
scheduledSearches: | |
- frequencies: | |
- daily: | |
time: 15:00 | |
filters: | |
- hasLabel: | |
label: stale | |
- isIssue | |
- isOpen | |
- isNotAssigned | |
- noActivitySince: | |
days: 30 | |
actions: | |
- addReply: | |
reply: "Closing issue due to no activity in 90 days" | |
- closeIssue |