Skip to content

Commit

Permalink
Update tools/find-inactive-collaborators.js
Browse files Browse the repository at this point in the history
Co-authored-by: Voltrex <[email protected]>
  • Loading branch information
Trott and VoltrexKeyva authored Jul 5, 2021
1 parent 6cf63e8 commit 9367582
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tools/find-inactive-collaborators.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ const collaborators = readmeText
})
.map((line) => line.split('**')[1].trim());

console.log(`${authors.length} authors have made commits since ${SINCE}.`);
console.log(`${landers.length} landers have landed commits since ${SINCE}.`);
console.log(`${approvingReviewers.length} reviewers have approved landed commits since ${SINCE}.`);
console.log(`${collaborators.length} collaborators currently in the project.`);
console.log(`${authors.length.toLocaleString()} authors have made commits since ${SINCE}.`);
console.log(`${landers.length.toLocaleString()} landers have landed commits since ${SINCE}.`);
console.log(`${approvingReviewers.length.toLocaleString()} reviewers have approved landed commits since ${SINCE}.`);
console.log(`${collaborators.length.toLocaleString()} collaborators currently in the project.`);

const inactive = collaborators.filter((collaborator) =>
!authors.includes(collaborator) &&
Expand Down

0 comments on commit 9367582

Please sign in to comment.