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" + diff --git a/.github/no-response.yml b/.github/no-response.yml new file mode 100644 index 00000000000..338215ccdcf --- /dev/null +++ b/.github/no-response.yml @@ -0,0 +1,17 @@ +# 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](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! 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