Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ if (PROD) {
}
const THRESHOLD = 4;
const { exec } = require('child_process');
const UPVOTES = ["+1", "upvote", "i like it", "i really like it"];
const DOWNVOTES = ["-1", "downvote", "i dislike it", "i really dislike it", "i hate it", "i really hate it"];
const UPVOTES = ["+1", "upvote", "i like it", "i really like it", "👍", "💓", "💗", "💚", "💞", "💙", "💜", "💟", "💖", "💛", "💕", "❤️", "♥️", "🧡"];
const DOWNVOTES = ["-1", "downvote", "i dislike it", "i really dislike it", "i hate it", "i really hate it", "👎"];
var GitHub = require('github-api');

// basic auth
Expand Down Expand Up @@ -73,7 +73,7 @@ function lookAtPrs() {
console.log("An update caused the new server code to exit: #" + prOverview.number);
process.exit(1);
});


} else {
console.log("Attempted, but failed, to merge #" + prOverview.number + ", with a status of " + res.status);
Expand Down