Skip to content

Commit 55a3fbc

Browse files
anonrigmarco-ippolito
authored andcommitted
tools: change inactive limit to 12 months
PR-URL: #52425 Reviewed-By: Ruy Adorno <[email protected]> Reviewed-By: Rafael Gonzaga <[email protected]> Reviewed-By: Moshe Atlow <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Robert Nagy <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Geoffrey Booth <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]>
1 parent 93d6840 commit 55a3fbc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

GOVERNANCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ The TSC can remove inactive collaborators or provide them with _emeritus_
6868
status. Emeriti may request that the TSC restore them to active status.
6969

7070
A collaborator is automatically made emeritus (and removed from active
71-
collaborator status) if it has been more than 18 months since the collaborator
71+
collaborator status) if it has been more than 12 months since the collaborator
7272
has authored or approved a commit that has landed.
7373

7474
## Technical Steering Committee

tools/find-inactive-collaborators.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const args = parseArgs({
1515
});
1616

1717
const verbose = args.values.verbose;
18-
const SINCE = args.positionals[0] || '18 months ago';
18+
const SINCE = args.positionals[0] || '12 months ago';
1919

2020
async function runGitCommand(cmd, mapFn) {
2121
const childProcess = cp.spawn('/bin/sh', ['-c', cmd], {

0 commit comments

Comments
 (0)