Fix displayed action

This commit is contained in:
Antoine 2017-09-04 10:50:23 +02:00
parent 4fd4ec8be3
commit a7f6a028a6
1 changed files with 7 additions and 1 deletions

View File

@ -127,8 +127,14 @@ var handlers = {
if (issue.action === 'update')
return;
// Make action displayable :
// open -> opened
// close -> closed
// merge -> merged
var displayedAction = issue.action.substr(-1) === 'e' ? issue.action + 'd' : issue.action + 'ed';
shortenURL(url, function(shortUrl) {
var msg = user + ' ' + issue.action + 'd issue #' + issueNumber + ' ("' + issueTitle + '") on ' + projectName + ' ' + shortUrl;
var msg = user + ' ' + displayedAction ' issue #' + issueNumber + ' ("' + issueTitle + '") on ' + projectName + ' ' + shortUrl;
say(msg);
});
},