-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Install ProBot #5082
Install ProBot #5082
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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! | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe we could add a link to our docs here, I use this response for these cases Closing this as the user hasn't responded or given more information, feel free to reopen with more information if you are still having this problem :). |
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 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we could extend this number a little more, maybe two months? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hrm, my idea with this bot is not "just close the issues" but also "alert us that we are not paying attention to them". If we find that 45 is to early and distracting, we can increase this number later. Anyway, if they are correctly labeled (Accepted, Desing decision, etc) it won't affect/distract us at all, though. |
||
|
||
# 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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we also have
fixme
andxxx
in our code, some are in lowercase.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will work only for new code, anyway. The bot does not accept multiple keywords as far as I know and
TODO
is the standard way.