From f2df9eb5cfa9a330b902146cbf827a7bf30ed8e1 Mon Sep 17 00:00:00 2001 From: Yagiz Nizipli Date: Wed, 10 Apr 2024 19:42:05 -0400 Subject: [PATCH] tools: change inactive limit to 9 months --- GOVERNANCE.md | 2 +- tools/find-inactive-collaborators.mjs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/GOVERNANCE.md b/GOVERNANCE.md index 1a5faf99a480ec..dd115367902c37 100644 --- a/GOVERNANCE.md +++ b/GOVERNANCE.md @@ -68,7 +68,7 @@ The TSC can remove inactive collaborators or provide them with _emeritus_ status. Emeriti may request that the TSC restore them to active status. A collaborator is automatically made emeritus (and removed from active -collaborator status) if it has been more than 12 months since the collaborator +collaborator status) if it has been more than 9 months since the collaborator has authored or approved a commit that has landed. ## Technical Steering Committee diff --git a/tools/find-inactive-collaborators.mjs b/tools/find-inactive-collaborators.mjs index 7a647475602b7f..9341521b4c6ebd 100755 --- a/tools/find-inactive-collaborators.mjs +++ b/tools/find-inactive-collaborators.mjs @@ -15,7 +15,7 @@ const args = parseArgs({ }); const verbose = args.values.verbose; -const SINCE = args.positionals[0] || '12 months ago'; +const SINCE = args.positionals[0] || '9 months ago'; async function runGitCommand(cmd, mapFn) { const childProcess = cp.spawn('/bin/sh', ['-c', cmd], {