Skip to content

Commit 1175d90

Browse files
Trottruyadorno
authored andcommitted
tools: add verbose flag to find-inactive-collaborators
PR-URL: #43964 Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Darshan Sen <raisinten@gmail.com>
1 parent e072c3a commit 1175d90

1 file changed

Lines changed: 14 additions & 6 deletions

File tree

‎tools/find-inactive-collaborators.mjs‎

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,15 @@
77
importcpfrom'node:child_process';
88
importfsfrom'node:fs';
99
importreadlinefrom'node:readline';
10+
import{parseArgs}from'node:util';
1011

11-
constSINCE=process.argv[2]||'18 months ago';
12+
constargs=parseArgs({
13+
allowPositionals: true,
14+
options: {verbose: {type: 'boolean',short: 'v'}}
15+
});
16+
17+
constverbose=args.values.verbose;
18+
constSINCE=args.positionals[0]||'18 months ago';
1219

1320
asyncfunctionrunGitCommand(cmd,mapFn){
1421
constchildProcess=cp.spawn('/bin/sh',['-c',cmd],{
@@ -176,11 +183,12 @@ async function moveCollaboratorToEmeritus(peopleToMove) {
176183
// Get list of current collaborators from README.md.
177184
constcollaborators=awaitgetCollaboratorsFromReadme();
178185

179-
console.log(`Since ${SINCE}:\n`);
180-
console.log(`* ${authors.size.toLocaleString()} authors have made commits.`);
181-
console.log(`* ${approvingReviewers.size.toLocaleString()} reviewers have approved landed commits.`);
182-
console.log(`* ${collaborators.length.toLocaleString()} collaborators currently in the project.`);
183-
186+
if(verbose){
187+
console.log(`Since ${SINCE}:\n`);
188+
console.log(`* ${authors.size.toLocaleString()} authors have made commits.`);
189+
console.log(`* ${approvingReviewers.size.toLocaleString()} reviewers have approved landed commits.`);
190+
console.log(`* ${collaborators.length.toLocaleString()} collaborators currently in the project.`);
191+
}
184192
constinactive=collaborators.filter((collaborator)=>
185193
!authors.has(collaborator.mailmap)&&
186194
!approvingReviewers.has(collaborator.name)

0 commit comments

Comments
 (0)