From 7c89a4a78554f5be75626dd5d0eb6f77e9341643 Mon Sep 17 00:00:00 2001 From: Clark Du Date: Wed, 31 Oct 2018 17:08:55 +0000 Subject: [PATCH] chore: add lock and stale config (#4240) ## Types of changes - [ ] Bug fix (a non-breaking change which fixes an issue) - [ ] New feature (a non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) ## Description ## Checklist: - [ ] My change requires a change to the documentation. - [ ] I have updated the documentation accordingly. (PR: #) - [ ] I have added tests to cover my changes (if not applicable, please state why) - [ ] All new and existing tests are passing. --- .github/lock.yml | 8 ++++++++ .github/stale.yml | 7 +++++++ 2 files changed, 15 insertions(+) create mode 100644 .github/lock.yml create mode 100644 .github/stale.yml diff --git a/.github/lock.yml b/.github/lock.yml new file mode 100644 index 0000000000..6580ca74ab --- /dev/null +++ b/.github/lock.yml @@ -0,0 +1,8 @@ +# Configuration for lock-threads - https://github.com/dessant/lock-threads +daysUntilLock: 30 +exemptLabels: [] +lockLabel: false +lockComment: > + This thread has been automatically locked since there has not been + any recent activity after it was closed. Please open a new issue for + related bugs. diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 0000000000..bcdd71c075 --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,7 @@ +# Configuration for probot-stale - https://github.com/probot/stale +daysUntilStale: 21 +daysUntilClose: 7 +staleLabel: stale +markComment: > + This issue has been automatically marked as stale because it has not had + recent activity. It will be closed if no further activity occurs.