15 lines
487 B
JavaScript
15 lines
487 B
JavaScript
module.exports = (robot) => {
|
|
console.log('Yay, the app was loaded!')
|
|
|
|
require('./scripts/assign-new-pr-to-review')(robot)
|
|
require('./scripts/assign-approved-pr-to-test')(robot)
|
|
require('./scripts/assign-to-bounty-awaiting-for-approval')(robot)
|
|
require('./scripts/greet-new-contributor')(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/
|
|
}
|