From 423ad47e0f59d6315a27bb1bf13444e90a831ac9 Mon Sep 17 00:00:00 2001 From: Yagiz Nizipli Date: Wed, 10 Apr 2024 15:03:09 -0400 Subject: [PATCH] tools: change inactive limit to 12 months MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/52425 Reviewed-By: Ruy Adorno Reviewed-By: Rafael Gonzaga Reviewed-By: Moshe Atlow Reviewed-By: Michaƫl Zasso Reviewed-By: Robert Nagy Reviewed-By: Richard Lau Reviewed-By: Joyee Cheung Reviewed-By: Geoffrey Booth Reviewed-By: Benjamin Gruenbaum --- 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 d29012745ea87f..1a5faf99a480ec 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 18 months since the collaborator +collaborator status) if it has been more than 12 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 1b9637f5ef2cd5..7a647475602b7f 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] || '18 months ago'; +const SINCE = args.positionals[0] || '12 months ago'; async function runGitCommand(cmd, mapFn) { const childProcess = cp.spawn('/bin/sh', ['-c', cmd], {