Skip to content

Commit

Permalink
Merge pull request #5082 from rtfd/humitos/add-probot-configs
Browse files Browse the repository at this point in the history
Install ProBot
  • Loading branch information
ericholscher authored Jan 10, 2019
2 parents c2391c0 + 7c8e692 commit 0a2fb47
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# ProBot TODO bot
# https://probot.github.io/apps/todo/

todo:
autoAssign: false
blobLines: 7
caseSensitive: true
keyword: "TODO"

17 changes: 17 additions & 0 deletions .github/no-response.yml
Original file line number Diff line number Diff line change
@@ -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!
26 changes: 26 additions & 0 deletions .github/stale.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 0a2fb47

Please sign in to comment.