status-github-bot/index.js

14 lines
442 B
JavaScript
Raw Normal View History

2018-01-22 13:48:57 +00:00
module.exports = (robot) => {
console.log('Yay, the app was loaded!')
require('./scripts/assign-new-pr-to-review.js')(robot);
require('./scripts/assign-to-bounty-awaiting-for-approval.js')(robot);
require('./scripts/greet-new-contributor.js')(robot);
// For more information on building apps:
// https://probot.github.io/docs/
// To get your app running against GitHub, see:
// https://probot.github.io/docs/development/
}