Skip to content

Commit

Permalink
fix: fix bot not running problem
Browse files Browse the repository at this point in the history
  • Loading branch information
Ovilia committed Nov 7, 2019
1 parent 64a146d commit cb262c7
Show file tree
Hide file tree
Showing 7 changed files with 2,942 additions and 2,399 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -2,3 +2,4 @@
lib
node_modules
.DS_Store
*.pem
6 changes: 3 additions & 3 deletions app.yml
Expand Up @@ -35,9 +35,9 @@ default_events:
# - project_card
# - project_column
# - public
# - pull_request
# - pull_request_review
# - pull_request_review_comment
- pull_request
- pull_request_review
- pull_request_review_comment
# - push
# - release
# - repository
Expand Down
55 changes: 36 additions & 19 deletions index.js
@@ -1,13 +1,13 @@
const Issue = require('./src/issue');
const coreCommitters = require('./src/coreCommitters');
const {LABEL_HOWTO, NOT_USING_TEMPLATE, INACTIVE_ISSUE} = require('./src/text');
const text = require('./src/text');

module.exports = app => {
app.on(['issues.opened'], async context => {
const issue = new Issue(context);

// Ignore comment because it will commented when adding invalid label
const comment = issue.response === NOT_USING_TEMPLATE
const comment = issue.response === text.NOT_USING_TEMPLATE
? Promise.resolve()
: commentIssue(context, issue.response);

Expand All @@ -17,25 +17,41 @@ module.exports = app => {
}))
: Promise.resolve();

const removeLabels = issue.removeLabels.length
? context.github.issues.addLabels(context.issue({
labels: issue.removeLabels
}))
const removeLabel = issue.removeLabel
? getRemoveLabel(issue.removeLabel)
: Promise.resolve();

return Promise.all([comment, addLabels, removeLabels]);
return Promise.all([comment, addLabels, removeLabel]);
});

app.on('issues.labeled', async context => {
var replaceAt = function (comment) {
return replaceAll(
comment,
'AT_ISSUE_AUTHOR',
'@' + context.payload.issue.user.login
);
};

// console.log(context.payload);
switch (context.payload.label.name) {
case 'invalid':
return Promise.all([commentIssue(context, NOT_USING_TEMPLATE), closeIssue(context)]);
return Promise.all([commentIssue(context, text.NOT_USING_TEMPLATE), closeIssue(context)]);

case 'howto':
return Promise.all([commentIssue(context, LABEL_HOWTO), closeIssue(context)]);
return Promise.all([commentIssue(context, text.LABEL_HOWTO), closeIssue(context)]);

case 'inactive':
return Promise.all([commentIssue(context, INACTIVE_ISSUE), closeIssue(context)]);
return Promise.all([commentIssue(context, text.INACTIVE_ISSUE), closeIssue(context)]);

case 'waiting-for: author':
return commentIssue(context, replaceAt(text.ISSUE_TAGGED_WAITING_AUTHOR));

case 'difficulty: easy':
return commentIssue(context, replaceAt(text.ISSUE_TAGGED_EASY));

case 'priority: high':
return commentIssue(context, replaceAt(text.ISSUE_TAGGED_PRIORITY_HIGH));
}
});

Expand All @@ -46,16 +62,13 @@ module.exports = app => {
let addLabel;
if (coreCommitters.isCoreCommitter(commenter) && !isCommenterAuthor) {
// New comment from core committers
removeLabel = getRemoveLabel(context, 'waiting-for-help');
addLabel = context.github.issues.addLabels(context.issue({
labels: ['waiting-for-author']
}));
removeLabel = getRemoveLabel(context, 'waiting-for: help');
}
else if (isCommenterAuthor) {
// New comment from issue author
removeLabel = getRemoveLabel(context, 'waiting-for-author');
removeLabel = getRemoveLabel(context, 'waiting-for: author');
addLabel = context.github.issues.addLabels(context.issue({
labels: ['waiting-for-help']
labels: ['waiting-for: community']
}));
}
return Promise.all([removeLabel, addLabel]);
Expand All @@ -65,7 +78,7 @@ module.exports = app => {
// app.on(['pull_request.opened', 'pull_request.reopened'], async context => {
// console.log('pull request open');
// const comment = context.github.issues.createComment(context.issue({
// body: PR_OPENED
// body: text.PR_OPENED
// }));

// return Promise.all([comment]);
Expand All @@ -76,15 +89,15 @@ module.exports = app => {
// console.log(context.payload);
// const isMerged = context.payload['pull_request'].merged;
// const comment = context.github.issues.createComment(context.issue({
// body: isMerged ? PR_MERGED : PR_NOT_MERGED
// body: isMerged ? text.PR_MERGED : text.PR_NOT_MERGED
// }));

// return Promise.all([comment]);
// });
}

function getRemoveLabel(context, name) {
return context.github.issues.deleteLabel(
return context.github.issues.removeLabel(
context.issue({
name: name
})
Expand All @@ -109,3 +122,7 @@ function commentIssue(context, commentText) {
}));
return comment;
}

function replaceAll(str, search, replacement) {
return str.replace(new RegExp(search, 'g'), replacement);
}

0 comments on commit cb262c7

Please sign in to comment.