Skip to content

Commit 3cfe5ac

Browse files
authored
Merge pull request #2876 from jasongrout/resolvelocked
Lock closed issues that have been inactive for 30 days.
2 parents efa9e89 + 8ea445c commit 3cfe5ac

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

.github/lock.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Configuration for Lock Threads - https://github.com/dessant/lock-threads
2+
3+
# Number of days of inactivity before a closed issue or pull request is locked
4+
daysUntilLock: 30
5+
6+
# Skip issues and pull requests created before a given timestamp. Timestamp must
7+
# follow ISO 8601 (`YYYY-MM-DD`). Set to `false` to disable
8+
skipCreatedBefore: false
9+
10+
# Issues and pull requests with these labels will be ignored. Set to `[]` to disable
11+
exemptLabels: []
12+
13+
# Label to add before locking, such as `outdated`. Set to `false` to disable
14+
lockLabel: resolved-locked
15+
16+
# Comment to post before locking. Set to `false` to disable
17+
lockComment: false
18+
19+
# lockComment: >
20+
# This thread has been automatically locked since there has not been
21+
# any recent activity after it was closed. Please open a [new issue](https://github.com/jupyterlab/jupyterlab/issues/new/choose)
22+
# for related discussion.
23+
24+
# Assign `resolved` as the reason for locking. Set to `false` to disable
25+
setLockReason: true
26+
27+
# Limit to only `issues` or `pulls`
28+
# only: issues
29+
30+
# Optionally, specify configuration settings just for `issues` or `pulls`
31+
# issues:
32+
# exemptLabels:
33+
# - help-wanted
34+
# lockLabel: outdated
35+
36+
# pulls:
37+
# daysUntilLock: 30
38+
39+
# Repository to extend settings from
40+
# _extends: repo

0 commit comments

Comments
 (0)