Skip to content

Commit 9a93d43

Browse files
committed
Add github lockdown app to auto-close pull requests.
1 parent a3eeca3 commit 9a93d43

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/lockdown.yml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Configuration for Repo Lockdown - https://github.com/dessant/repo-lockdown
2+
3+
# Skip issues and pull requests created before a given timestamp. Timestamp must
4+
# follow ISO 8601 (`YYYY-MM-DD`). Set to `false` to disable
5+
skipCreatedBefore: false
6+
7+
# Issues and pull requests with these labels will be ignored. Set to `[]` to disable
8+
exemptLabels: []
9+
10+
# Comment to post before closing or locking. Set to `false` to disable
11+
comment: true
12+
13+
# Label to add before closing or locking. Set to `false` to disable
14+
label: false
15+
16+
# Close issues and pull requests
17+
close: true
18+
19+
# Lock issues and pull requests
20+
lock: true
21+
22+
# Limit to only `issues` or `pulls`
23+
# only: issues
24+
25+
# Optionally, specify configuration settings just for `issues` or `pulls`
26+
# issues:
27+
# label: wontfix
28+
29+
pulls:
30+
comment: >
31+
This repository does not accept pull requests.
32+
Please follow http://llvm.org/docs/Contributing.html#how-to-submit-a-patch for contribution to LLVM.
33+

0 commit comments

Comments
 (0)