8000 Merge pull request #78 from vbrazo/add-stale-and-codeowners · BrentMat/Algorithms-Explanation@f86bb57 · GitHub 8000
[go: up one dir, main page]

Skip to content

Commit f86bb57

Browse files
authored
Merge pull request TheAlgorithms#78 from vbrazo/add-stale-and-codeowners
Add .stale.yml and CODEOWNERS
2 parents 8b28025 + 6159002 commit f86bb57

File tree

2 files changed

+70
-0
lines changed

2 files changed

+70
-0
lines changed

.github/CODEOWNERS

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# This is a comment.
2+
# Each line is a file pattern followed by one or more owners.
3+
4+
# More details are here: https://help.github.com/articles/about-codeowners/
5+
6+
# The '*' pattern is global owners.
7+
8+
# Order is important. The last matching pattern has the most precedence.
9+
10+
/.* @vbrazo @ashwek @AnupKumarPanwar

.github/stale.yml

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
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: fals 8000 e
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+
41+
# Comment to post when closing a stale Pull Request.
42+
closeComment: >
43+
Please reopen this pull request once you commit the changes requested
44+
or make improvements on the code. If this is not the case and you need
45+
some help, feel free to seek help from our [Gitter](https://gitter.im/TheAlgorithms)
46+
or ping one of the reviewers. Thank you for your contributions!
47+
48+
issues:
49+
# Comment to post when marking as stale. Set to `false` to disable
50+
markComment: >
51+
This issue has been automatically marked as stale because it has not had
52+
recent activity. It will be closed if no further activity occurs. Thank you
53+
for your contributions.
54+
55+
# Comment to post when closing a stale Issue.
56+
closeComment: >
57+
Please reopen this issue once you add more information and updates here.
58+
If this is not the case and you need some help, feel free to seek help
59+
from our [Gitter](https://gitter.im/TheAlgorithms) or ping one of the
60+
reviewers. Thank you for your contributions!

0 commit comments

Comments
 (0)
0