We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6779760 commit 6ab5a4eCopy full SHA for 6ab5a4e
lib/pr_checker.js
@@ -119,12 +119,8 @@ class PRChecker {
119
}
120
121
if (commentApproved && commentApproved.length !== 0) {
122
- let notComm = approved.length;
123
- approved.map((r) => {
124
- if (r.review.source !== FROM_REVIEW_COMMENT) { notComm--; }
125
- });
126
let hint = this.getTSCHint(approved);
127
- logger.info(`LGTM in commented review: ${notComm}${hint}`);
+ logger.info(`LGTM in commented review: ${commentApproved.length}${hint}`);
128
for (const { reviewer, review } of commentApproved) {
129
if (review.source === FROM_REVIEW_COMMENT) {
130
logger.info(
0 commit comments