in src/main/java/com/criteo/gerrit/plugins/automerge/AutomaticMerger.java [167:176]
private boolean shouldProcessCommentEvent(CommentAddedEvent comment) {
AccountAttribute account = comment.author.get();
if (!config.getBotEmail().equals(account.email)) {
return true;
}
if (!comment.comment.contains(ReviewUpdater.commentsPrefix)) {
return true;
}
return false;
}