Skip to content

Commit 6ffba30

Browse files
cmccandlessNathan Parsons
authored andcommitted
Make probot/stale more useful (exercism#1086)
* Make probot/stale more useful Propose the following changes: - `daysUntilStale: 60 -> 21`: With 5 track maintainers (3+ active), issues are being manually closed after ~20 days frequently. 60 days is too long. - Add `epic` to `exemptLabels`: `epic` denotes issues that are usually super-issues, and closing every sub-issue takes a lot of effort and time. - `staleLabel: on hiatus -> abandoned`: `abandoned` is typically used by the maintainers here, so change for consistency * ignore "enchancement" and "beginner friendly" labels
1 parent 31f81d7 commit 6ffba30

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/stale.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
11
# Number of days of inactivity before an issue becomes stale
2-
daysUntilStale: 60
2+
daysUntilStale: 21
33
# Number of days of inactivity before a stale issue is closed
44
daysUntilClose: 7
55
# Issues with these labels will never be considered stale
66
exemptLabels:
77
- discussion
88
- pinned
9+
- epic
10+
- enhancement
11+
- beginner friendly
912
# Label to use when marking an issue as stale
10-
staleLabel: on hiatus
13+
staleLabel: abandoned
1114
# Comment to post when marking an issue as stale. Set to `false` to disable
1215
markComment: >
13-
This issue has been automatically marked as `on hiatus` because it has not had
16+
This issue has been automatically marked as `abandoned` because it has not had
1417
recent activity. It will be closed if no further activity occurs. Thank you
1518
for your contributions.
1619
# Comment to post when closing a stale issue. Set to `false` to disable

0 commit comments

Comments
 (0)