Skip to content

Commit

Permalink
removed unnecessary log information
Browse files Browse the repository at this point in the history
It is already logged in the PR API method
  • Loading branch information
Bullrich committed Aug 1, 2023
1 parent 289cb66 commit c2233aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export class ActionRunner {

// We get the list of users that approved the PR
const approvals = await this.prApi.listApprovedReviewsAuthors();
this.logger.info(`Found ${approvals.length} approvals: ${JSON.stringify(approvals)}`);
this.logger.info(`Found ${approvals.length} approvals.`);

// This is the amount of reviews required. To succeed this should be 0 or lower
let missingReviews = rule.min_approvals;
Expand Down

0 comments on commit c2233aa

Please sign in to comment.