File tree 1 file changed +33
-0
lines changed
1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change
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
+
You can’t perform that action at this time.
0 commit comments