107 lines
3.8 KiB
JavaScript
107 lines
3.8 KiB
JavaScript
// Description:
|
|
// Script that listens to new labels on GitHub issues
|
|
// and assigns the issues to the bounty-awaiting-approval column on the "Status SOB Swarm" project
|
|
//
|
|
// Dependencies:
|
|
// github: "^13.1.0"
|
|
// probot-config "^0.1.0"
|
|
// probot-slack-status: "^0.2.2"
|
|
//
|
|
// Author:
|
|
// PombeirP
|
|
|
|
const getConfig = require('probot-config');
|
|
const Slack = require('probot-slack-status');
|
|
|
|
let slackClient = null;
|
|
|
|
module.exports = function(robot) {
|
|
// robot.on('slack.connected', ({ slack }) => {
|
|
Slack(robot, (slack) => {
|
|
robot.log.trace("Connected, assigned slackClient");
|
|
slackClient = slack;
|
|
});
|
|
|
|
robot.on('issues.labeled', async context => {
|
|
// Make sure we don't listen to our own messages
|
|
if (context.isBot) { return; }
|
|
|
|
// A new issue was labeled
|
|
await assignIssueToBountyAwaitingForApproval(context, robot);
|
|
});
|
|
};
|
|
|
|
async function assignIssueToBountyAwaitingForApproval(context, robot) {
|
|
const github = context.github;
|
|
const payload = context.payload;
|
|
const config = await getConfig(context, 'github-bot.yml')
|
|
const ownerName = payload.repository.owner.login;
|
|
const repoName = payload.repository.name;
|
|
const issueNumber = payload.issue.number;
|
|
|
|
robot.log(`assignIssueToBountyAwaitingForApproval - Handling Issue #${issueNumber} on repo ${ownerName}/${repoName}`);
|
|
|
|
// Fetch org projects
|
|
// TODO: The org project and project column info should be cached
|
|
// in order to improve performance and reduce roundtrips
|
|
try {
|
|
const orgName = 'status-im';
|
|
|
|
ghprojects = await github.projects.getOrgProjects({
|
|
org: orgName,
|
|
state: "open"
|
|
});
|
|
|
|
// Find "Status SOB Swarm" project
|
|
const projectBoardName = config['bounty-awaiting-approval']['project-board'].name;
|
|
const project = ghprojects.data.find(function(p) { return p.name === projectBoardName });
|
|
if (!project) {
|
|
robot.log.error(`Couldn't find project ${projectBoardName} in ${orgName} org`);
|
|
return;
|
|
}
|
|
|
|
robot.log.debug(`Fetched ${project.name} project (${project.id})`);
|
|
|
|
// Fetch bounty-awaiting-approval column ID
|
|
try {
|
|
ghcolumns = await github.projects.getProjectColumns({ project_id: project.id });
|
|
|
|
const approvalColumnName = config['bounty-awaiting-approval']['project-board']['approval-column-name'];
|
|
const column = ghcolumns.data.find(function(c) { return c.name === approvalColumnName });
|
|
if (!column) {
|
|
robot.log.error(`Couldn't find ${approvalColumnName} column in project ${project.name}`);
|
|
return;
|
|
}
|
|
|
|
robot.log.debug(`Fetched ${column.name} column (${column.id})`);
|
|
|
|
// Create project card for the issue in the bounty-awaiting-approval column
|
|
try {
|
|
ghcard = await github.projects.createProjectCard({
|
|
column_id: column.id,
|
|
content_type: 'Issue',
|
|
content_id: payload.issue.id
|
|
});
|
|
|
|
robot.log.debug(`Created card: ${ghcard.data.url}`, ghcard.data.id);
|
|
|
|
// Send message to Slack
|
|
if (slackClient != null) {
|
|
const channel = slackClient.dataStore.getChannelByName(config.slack.notification.room);
|
|
try {
|
|
await slackClient.sendMessage(`Assigned issue to ${approvalColumnName} in ${projectBoardName} project\n${payload.issue.html_url}`, channel.id);
|
|
} catch(err) {
|
|
robot.log.error(`Failed to send Slack message to ${config.slack.notification.room} channel`);
|
|
}
|
|
}
|
|
} catch (err) {
|
|
robot.log.error(`Couldn't create project card for the issue: ${err}`, column.id, payload.issue.id);
|
|
}
|
|
} catch (err) {
|
|
robot.log.error(`Couldn't fetch the github columns for project: ${err}`, ownerName, repoName, project.id);
|
|
}
|
|
} catch (err) {
|
|
robot.log.error(`Couldn't fetch the github projects for repo: ${err}`, ownerName, repoName);
|
|
}
|
|
};
|