Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tools: change inactive limit to 9 months #52459

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion GOVERNANCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tools/find-inactive-collaborators.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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], {
Expand Down
Loading