Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ These are 3rd-party plugins that are included in this bot:
- [settings](https://github.com/probot/settings): Pull Requests for GitHub repository settings
- [autolabeler](https://github.com/probot/autolabeler): Automatically label Issues and Pull Requests based on logic in the `.github/config.yml` file
- [wip-bot](https://github.com/gr2m/wip-bot): Mark a Pull Request as unmergeable when `WIP` is in the PR title
- [probot-app-todos](https://github.com/uber-workflow/probot-app-todos): Help create Issues when code contains a "TO DO" (no spaces)
- [todo](https://github.com/JasonEtco/todo): Help create Issues when code contains a "TO DO" or "@to do" (no spaces)
- [release-notifier](https://github.com/release-notifier/release-notifier): When a tag is created add a comment on the Pull Request denoting which release it was included in
- [request-info](https://github.com/behaviorbot/request-info): Ask for additional information when a Pull Request description is empty
- [first-pr-merge](https://github.com/behaviorbot/first-pr-merge): Welcome new contributors
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
"new-pr-welcome": "github:behaviorbot/new-pr-welcome",
"nodemon": "^1.14.11",
"probot": "^6.1.0",
"probot-app-todos": "^1.0.5",
"probot-config": "^0.1.0",
"probot-settings": "github:probot/settings",
"project-bot": "^2.0.5",
"release-notifier": "github:release-notifier/release-notifier",
"request-info": "github:behaviorbot/request-info",
"smee-client": "^1.0.1",
"todo": "github:JasonEtco/todo#e723c467321d457ea3d509c2ba05bf2356455cbe",
"unfurl": "github:probot/unfurl",
"wip-bot": "^2.1.0"
},
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module.exports = (robot) => {
require('new-pr-welcome')(robot)
require('request-info')(robot)
require('unfurl')(robot)
// require('probot-app-todos')(robot)
require('todo/src')(robot)
require('release-notifier')(robot)
require('wip-bot')(robot)
require('./project-events')(robot)
Expand Down
Loading