From ca2bb16bda712700427e2041e11ffa55241c5903 Mon Sep 17 00:00:00 2001 From: Sean Molenaar Date: Tue, 3 Jul 2018 14:21:06 +0200 Subject: [PATCH] Add github bots for issues --- .github/no-response.yml | 13 +++++++++++++ .github/stale.yml | 21 +++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 .github/no-response.yml create mode 100644 .github/stale.yml diff --git a/.github/no-response.yml b/.github/no-response.yml new file mode 100644 index 0000000000..d745b86385 --- /dev/null +++ b/.github/no-response.yml @@ -0,0 +1,13 @@ +# Configuration for probot-no-response - https://github.com/probot/no-response + +# Number of days of inactivity before an Issue is closed for lack of response +daysUntilClose: 14 +# Label requiring a response +responseRequiredLabel: needs info +# Comment to post when closing an Issue for lack of response. Set to `false` to disable +closeComment: > + This issue has been automatically closed because there has been no response + to our request for more information from the original author. With only the + information that is currently in the issue, we don't have enough information + to take action. Please reach out if you have or find the answers we need so + that we can investigate further. diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 0000000000..556679f336 --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,21 @@ +# Configuration for probot-stale - https://github.com/probot/stale + +# Number of days of inactivity before an Issue or Pull Request becomes stale +daysUntilStale: 21 +# Number of days of inactivity before a stale Issue or Pull Request is closed +daysUntilClose: 7 +# Issues or Pull Requests with these labels will never be considered stale +exemptLabels: + - 0. Needs triage + - 1. to develop + - 2. developing + - 3. to review + - 4. to release + - help wanted + - in progress +# Label to use when marking as stale +staleLabel: stale +# Comment to post when marking as stale. Set to `false` to disable +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.