14 lines
442 B
JavaScript
14 lines
442 B
JavaScript
|
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/
|
||
|
}
|