Skip to content

Commit 9367582

Browse files
TrottVoltrexKeyva
andauthored
Update tools/find-inactive-collaborators.js
Co-authored-by: Voltrex <[email protected]>
1 parent 6cf63e8 commit 9367582

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tools/find-inactive-collaborators.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ const collaborators = readmeText
6060
})
6161
.map((line) => line.split('**')[1].trim());
6262

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

6868
const inactive = collaborators.filter((collaborator) =>
6969
!authors.includes(collaborator) &&

0 commit comments

Comments
 (0)