diff --git a/index.js b/index.js index 0709ef4..db1e8eb 100644 --- a/index.js +++ b/index.js @@ -100,7 +100,9 @@ app.post('/github-hook', function (req, res, next) { metadata(n, u, content).then(function(metadata) { return removeReviewableBanner(n, metadata); }); - } else if (action == "opened" || action == "synchronize" || (isComment && action == "created")) { + } else if (action == "opened" || action == "synchronize" || + action == "ready_for_review" || + (isComment && action == "created")) { if (n in currentlyRunning) { logArgs("#" + n + " is already being processed."); return;