From 7b8c08d27e2ecdc7b9e20ac66cda54ce2e8e5fe9 Mon Sep 17 00:00:00 2001 From: Manuel Kaufmann Date: Wed, 9 Jan 2019 10:43:25 +0100 Subject: [PATCH 1/4] Setup: ProBot No Response This bot will help us to close issues after requesting more information to the user that reported it. --- .github/no-response.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/no-response.yml diff --git a/.github/no-response.yml b/.github/no-response.yml new file mode 100644 index 00000000000..991e445add7 --- /dev/null +++ b/.github/no-response.yml @@ -0,0 +1,16 @@ +# ProBot No Response Bot +# https://probot.github.io/apps/no-response/ + +# Number of days of inactivity before an Issue is closed for lack of response +daysUntilClose: 14 + +# Label requiring a response +responseRequiredLabel: 'Needed: more information' + +# 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. Thanks! From 544867f83fe2b7782ea2f0ee11c058547540e8e3 Mon Sep 17 00:00:00 2001 From: Manuel Kaufmann Date: Wed, 9 Jan 2019 10:44:21 +0100 Subject: [PATCH 2/4] Setup: ProBot Stale Bot This bot will help us to clean up our repository and stay with issues that are actionable and we do want to work on them at some point. So, after some inactivity the bot will post a comment and if nobody responds to it, the issue will be closed. --- .github/stale.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/stale.yml diff --git a/.github/stale.yml b/.github/stale.yml new file mode 100644 index 00000000000..704b8d634f1 --- /dev/null +++ b/.github/stale.yml @@ -0,0 +1,26 @@ +# ProBot Stale Bot +# https://probot.github.io/apps/stale/ + +# Number of days of inactivity before an issue becomes stale +daysUntilStale: 45 + +# Number of days of inactivity before a stale issue is closed +daysUntilClose: 7 + +# Issues with these labels will never be considered stale +exemptLabels: + - 'Accepted' + - 'Needed: design decision' + - 'Status: blocked' + +# Label to use when marking an issue as stale +staleLabel: 'Status: stale' + +# Comment to post when marking an issue 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. Thank you + for your contributions. + +# Comment to post when closing a stale issue. Set to `false` to disable +closeComment: false From 6de6c8e264a81476bc9b67f378328243ab7b8a53 Mon Sep 17 00:00:00 2001 From: Manuel Kaufmann Date: Wed, 9 Jan 2019 11:06:23 +0100 Subject: [PATCH 3/4] Setup: ProBot TODO Bot --- .github/config.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/config.yml diff --git a/.github/config.yml b/.github/config.yml new file mode 100644 index 00000000000..3575f85609e --- /dev/null +++ b/.github/config.yml @@ -0,0 +1,9 @@ +# ProBot TODO bot +# https://probot.github.io/apps/todo/ + +todo: + autoAssign: false + blobLines: 7 + caseSensitive: true + keyword: "TODO" + From 7c8e6928fc89de899bd1774da524105c9b2ede17 Mon Sep 17 00:00:00 2001 From: Manuel Kaufmann Date: Wed, 9 Jan 2019 16:39:50 +0100 Subject: [PATCH 4/4] Add link to our docs about triagging --- .github/no-response.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/no-response.yml b/.github/no-response.yml index 991e445add7..338215ccdcf 100644 --- a/.github/no-response.yml +++ b/.github/no-response.yml @@ -9,8 +9,9 @@ responseRequiredLabel: 'Needed: more information' # 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. Thanks! + This issue has been automatically closed because + [there has been no response to our request for more information](https://docs.readthedocs.io/en/latest/contribute.html#initial-triage) + 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. + Thanks!