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 <ruy@vlt.sh> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
1 parent 93d6840 commit 55a3fbc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

GOVERNANCE.md

+1-1
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

+1-1
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)