Skip to content

Commit ec593c8

Browse files
committed
add stale config
1 parent 8570c22 commit ec593c8

1 file changed

Lines changed: 72 additions & 0 deletions

File tree

.github/stale.yml

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
# Configuration for zendesk-stale - https://github.com/zendesk/stale
2+
3+
# Number of days of inactivity before an Issue or Pull Request becomes stale
4+
daysUntilStale: 90
5+
6+
# Number of days of inactivity before a stale Issue or Pull Request is closed.
7+
# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
8+
daysUntilClose: 14
9+
10+
# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
11+
exemptLabels: [long-term]
12+
13+
# Set to true to ignore issues in a project (defaults to false)
14+
exemptProjects: false
15+
16+
# Set to true to ignore issues in a milestone (defaults to false)
17+
exemptMilestones: false
18+
19+
# Label to use when marking as stale
20+
staleLabel: wontfix
21+
22+
# Comment to post when marking as stale. Set to `false` to disable
23+
markComment: >
24+
This issue has been automatically marked as stale because it has not had
25+
recent activity. It will be closed if no further activity occurs. Thank you
26+
for your contributions.
27+
28+
# Comment to post when removing the stale label.
29+
# unmarkComment: >
30+
# Your comment here.
31+
32+
# Comment to post when closing a stale Issue or Pull Request.
33+
# closeComment: >
34+
# Your comment here.
35+
36+
# Limit the number of actions per hour, from 1-30. Default is 30
37+
limitPerRun: 30
38+
39+
# Limit to only `issues` or `pulls`
40+
# only: issues
41+
42+
# Enable to delete branches after inactivity period. Set to `false` to disable
43+
enableBranches: true
44+
45+
# Number of days of inactivity before deleting the branch
46+
daysUntilDeleteBranches: 90
47+
48+
# Regex Examples: https://www.w3schools.com/jsref/jsref_obj_regexp.asp
49+
# Branch name matches the regular expression will not be considered for deletion. Set to `false` to disable
50+
exemptBranches: false
51+
52+
# Branch name matches the regular expression will only be considered for deletion. Set to `false` to disable
53+
onlyBranches: false
54+
55+
# Branches created by given `Github Usernames` will only be considered for deletion. Set to `[]` to disable
56+
onlyBranchesCreatedBy: []
57+
# Optionally, specify configuration settings that are specific to just 'issues' or 'pulls':
58+
# pulls:
59+
# daysUntilStale: 30
60+
# markComment: >
61+
# This pull request has been automatically marked as stale because it has not had
62+
# recent activity. It will be closed if no further activity occurs. Thank you
63+
# for your contributions.
64+
65+
# issues:
66+
# exemptLabels:
67+
# - confirmed
68+
69+
# Optionally, specify configuration settings that are specific to just 'branches':
70+
# branches:
71+
# enableBranches: true
72+
# daysUntilDeleteBranches: 30

0 commit comments

Comments
 (0)