Skip to content

Commit f561073

Browse files
authored
Create .stale.yml
1 parent 991d8ce commit f561073

File tree

1 file changed

+57
-0
lines changed

1 file changed

+57
-0
lines changed

.github/workflows/.stale.yml

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# Configuration for probot-stale - https://github.com/probot/stale
2+
3+
# Number of days of inactivity before an Issue or Pull Request becomes stale
4+
daysUntilStale: 30
5+
6+
# Number of days of inactivity before an Issue or Pull Request with the stale label 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: 7
9+
10+
# Only issues or pull requests with all of these labels are check if stale. Defaults to `[]` (disabled)
11+
onlyLabels: []
12+
13+
# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
14+
exemptLabels:
15+
- "Status: on hold"
16+
17+
# Set to true to ignore issues in a project (defaults to false)
18+
exemptProjects: false
19+
20+
# Set to true to ignore issues in a milestone (defaults to false)
21+
exemptMilestones: false
22+
23+
# Set to true to ignore issues with an assignee (defaults to false)
24+
exemptAssignees: false
25+
26+
# Label to use when marking as stale
27+
staleLabel: stale
28+
29+
# Comment to post when removing the stale label.
30+
# unmarkComment: >
31+
# Your comment here.
32+
33+
# Optionally, specify configuration settings that are specific to just 'issues' or 'pulls':
34+
pulls:
35+
# Comment to post when marking as stale. Set to `false` to disable
36+
markComment: >
37+
This pull request has been automatically marked as stale because it has not had
38+
recent activity. It will be closed if no further activity occurs. Thank you
39+
for your contributions.
40+
# Comment to post when closing a stale Pull Request.
41+
closeComment: >
42+
Please reopen this pull request once you commit the changes requested
43+
or make improvements on the code. If this is not the case and you need
44+
some help, feel free to seek help from our [Gitter](https://gitter.im/TheAlgorithms)
45+
or ping one of the reviewers. Thank you for your contributions!
46+
issues:
47+
# Comment to post when marking as stale. Set to `false` to disable
48+
markComment: >
49+
This issue has been automatically marked as stale because it has not had
50+
recent activity. It will be closed if no further activity occurs. Thank you
51+
for your contributions.
52+
# Comment to post when closing a stale Issue.
53+
closeComment: >
54+
Please reopen this issue once you add more information and updates here.
55+
If this is not the case and you need some help, feel free to seek help
56+
from our [Gitter](https://gitter.im/TheAlgorithms) or ping one of the
57+
reviewers. Thank you for your contributions!

0 commit comments

Comments
 (0)