status-github-bot/bot_scripts/assign-new-pr-to-review.js

73 lines
2.5 KiB
JavaScript
Raw Normal View History

2018-01-22 13:48:57 +00:00
// Description:
// Script that listens to new GitHub pull requests
// and assigns them to the REVIEW column on the 'Pipeline for QA' project
2018-01-22 13:48:57 +00:00
//
// Dependencies:
// github: "^13.1.0"
2019-01-31 15:07:54 +00:00
// probot-config: "^1.0.0"
2018-01-22 13:48:57 +00:00
//
// Author:
// PombeirP
2018-01-23 14:27:25 +00:00
const defaultConfig = require('../lib/config')
2018-10-10 09:02:26 +00:00
// const slackHelper = require('../lib/slack')
const gitHubHelpers = require('../lib/github-helpers')
const getConfig = require('probot-config')
2018-01-22 13:48:57 +00:00
2018-02-13 14:51:00 +00:00
const botName = 'assign-new-pr-to-review'
2018-01-22 13:48:57 +00:00
module.exports = (robot) => {
2018-01-22 13:48:57 +00:00
robot.on('pull_request.opened', async context => {
// Make sure we don't listen to our own messages
2018-01-23 14:27:25 +00:00
if (context.isBot) { return }
2018-01-22 13:48:57 +00:00
// A new PR was opened
2018-01-23 14:27:25 +00:00
await assignPullRequestToReview(context, robot)
})
}
2018-01-22 13:48:57 +00:00
async function assignPullRequestToReview (context, robot) {
2018-02-07 16:04:59 +00:00
const { github, payload } = context
const config = await getConfig(context, 'github-bot.yml', defaultConfig(robot, '.github/github-bot.yml'))
2019-01-22 11:26:05 +00:00
const repoInfo = context.repo()
2018-01-23 14:27:25 +00:00
const prNumber = payload.pull_request.number
const projectBoardConfig = config ? config['project-board'] : null
if (!projectBoardConfig) {
return
}
2018-02-16 20:35:49 +00:00
robot.log(`${botName} - Handling Pull Request #${prNumber} on repo ${repoInfo.owner}/${repoInfo.repo}`)
const projectBoardName = projectBoardConfig.name
const reviewColumnName = projectBoardConfig['review-column-name']
// Find 'Pipeline for QA' project
const project = await gitHubHelpers.getRepoProjectByName(github, robot, repoInfo, projectBoardName, botName)
// Fetch REVIEW column ID
const column = await gitHubHelpers.getProjectColumnByName(github, robot, project, reviewColumnName, botName)
if (!column) {
return
}
// Create project card for the PR in the REVIEW column
try {
if (process.env.DRY_RUN) {
2018-02-13 14:51:00 +00:00
robot.log.debug(`${botName} - Would have created card`, column.id, payload.pull_request.id)
} else {
const ghcardPayload = await github.projects.createCard({
column_id: column.id,
content_type: 'PullRequest',
content_id: payload.pull_request.id
})
2018-02-13 14:51:00 +00:00
robot.log.debug(`${botName} - Created card: ${ghcardPayload.data.url}`, ghcardPayload.data.id)
}
// Send message to Slack
2018-10-10 09:02:26 +00:00
// slackHelper.sendMessage(robot, config.slack.notification.room, `Assigned PR to ${reviewColumnName} in ${projectBoardName} project\n${payload.pull_request.html_url}`)
} catch (err) {
2018-02-13 14:51:00 +00:00
robot.log.error(`${botName} - Couldn't create project card for the PR: ${err}`, column.id, payload.pull_request.id)
2018-01-22 13:48:57 +00:00
}
2018-01-23 14:27:25 +00:00
}