Skip to content
This repository was archived by the owner on Oct 20, 2020. It is now read-only.

Commit 1fdc865

Browse files
committed
Add Probot configs
1 parent 2c1dea8 commit 1fdc865

File tree

3 files changed

+68
-0
lines changed

3 files changed

+68
-0
lines changed

.github/lock.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Number of days of inactivity before a closed issue or pull request is locked
2+
daysUntilLock: 365
3+
# Issues and pull requests with these labels will not be locked. Set to `[]` to disable
4+
exemptLabels: []
5+
# Label to add before locking, such as `outdated`. Set to `false` to disable
6+
lockLabel: false
7+
# Comment to post before locking. Set to `false` to disable
8+
lockComment: >
9+
This thread has been automatically locked since there has not been
10+
any recent activity after it was closed. Please open a new issue for
11+
related bugs.
12+
# Assign `resolved` as the reason for locking. Set to `false` to disable
13+
setLockReason: true
14+
15+
# Limit to only `issues` or `pulls`
16+
# only: issues
17+
18+
# Optionally, specify configuration settings just for `issues` or `pulls`
19+
# issues:
20+
# exemptLabels:
21+
# - help-wanted
22+
# lockLabel: outdated
23+
24+
# pulls:
25+
# daysUntilLock: 30
26+
27+
# Repository to extend settings from
28+
# _extends: repo

.github/reaction.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Issues and pull requests with these labels accept reaction comments.
2+
# Set to `[]` to disable
3+
exemptLabels: []
4+
5+
# Replace matching comments with this message, `{comment-author}` is an
6+
# optional placeholder. Set to `false` to disable
7+
reactionComment: >
8+
:wave: @{comment-author}, did you mean to use
9+
a [reaction](https://git.io/vhzhC) instead?
10+
11+
# Limit to only `issues` or `pulls`
12+
# only: issues
13+
14+
# Optionally, specify configuration settings just for `issues` or `pulls`
15+
# issues:
16+
# exemptLabels:
17+
# - party-parrot
18+
19+
# pulls:
20+
# reactionComment: false
21+
22+
# Repository to extend settings from
23+
# _extends: repo

.github/stale.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Number of days of inactivity before an issue becomes stale
2+
daysUntilStale: 60
3+
# Number of days of inactivity before a stale issue is closed
4+
daysUntilClose: 7
5+
# Issues with these labels will never be considered stale
6+
exemptLabels:
7+
- pinned
8+
- security
9+
# Label to use when marking an issue as stale
10+
staleLabel: wontfix
11+
# Comment to post when marking an issue as stale. Set to `false` to disable
12+
markComment: >
13+
This issue has been automatically marked as stale because it has not had
14+
recent activity. It will be closed if no further activity occurs. Thank you
15+
for your contributions.
16+
# Comment to post when closing a stale issue. Set to `false` to disable
17+
closeComment: false

0 commit comments

Comments
 (0)