diff --git a/.github/lockdown.yml b/.github/lockdown.yml new file mode 100644 index 0000000000000..ba1bfffe5cee7 --- /dev/null +++ b/.github/lockdown.yml @@ -0,0 +1,33 @@ +# Configuration for Repo Lockdown - https://github.com/dessant/repo-lockdown + +# Skip issues and pull requests created before a given timestamp. Timestamp must +# follow ISO 8601 (`YYYY-MM-DD`). Set to `false` to disable +skipCreatedBefore: false + +# Issues and pull requests with these labels will be ignored. Set to `[]` to disable +exemptLabels: [] + +# Comment to post before closing or locking. Set to `false` to disable +comment: true + +# Label to add before closing or locking. Set to `false` to disable +label: false + +# Close issues and pull requests +close: true + +# Lock issues and pull requests +lock: true + +# Limit to only `issues` or `pulls` +# only: issues + +# Optionally, specify configuration settings just for `issues` or `pulls` +# issues: +# label: wontfix + +pulls: + comment: > + This repository does not accept pull requests. + Please follow http://llvm.org/docs/Contributing.html#how-to-submit-a-patch for contribution to LLVM. + diff --git a/README.md b/README.md index de0891a7044a9..70d927b381ec6 100644 --- a/README.md +++ b/README.md @@ -2,4 +2,4 @@ This directory and its subdirectories contain source code for LLVM, a toolkit for the construction of highly optimized compilers, -optimizers, and runtime environments. +optimizers, and runtime environments.