mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
tools: use GITHUB_ACTIONS env var in inactivity scripts
Don't rewrite the README if we're not running inside a GitHub Action. PR-URL: https://github.com/nodejs/node/pull/41422 Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
This commit is contained in:
parent
f65bbce90b
commit
c8d38e4933
@ -189,8 +189,9 @@ const inactive = collaborators.filter((collaborator) =>
|
||||
if (inactive.length) {
|
||||
console.log('\nInactive collaborators:\n');
|
||||
console.log(inactive.map((entry) => `* ${entry.name}`).join('\n'));
|
||||
console.log('\nGenerating new README.md file...');
|
||||
const newReadmeText = await moveCollaboratorToEmeritus(inactive);
|
||||
fs.writeFileSync(new URL('../README.md', import.meta.url), newReadmeText);
|
||||
console.log('Updated README.md generated. Please commit these changes.');
|
||||
if (process.env.GITHUB_ACTIONS) {
|
||||
console.log('\nGenerating new README.md file...');
|
||||
const newReadmeText = await moveCollaboratorToEmeritus(inactive);
|
||||
fs.writeFileSync(new URL('../README.md', import.meta.url), newReadmeText);
|
||||
}
|
||||
}
|
||||
|
@ -260,10 +260,11 @@ if (inactive.length) {
|
||||
});
|
||||
console.log(`DETAILS_FOR_COMMIT_BODY=${commitDetails.join(' ')}`);
|
||||
|
||||
// Using console.warn() to avoid messing with find-inactive-tsc which consumes
|
||||
// stdout.
|
||||
console.warn('Generating new README.md file...');
|
||||
const newReadmeText = await moveTscToEmeritus(inactive);
|
||||
fs.writeFileSync(new URL('../README.md', import.meta.url), newReadmeText);
|
||||
console.warn('Updated README.md generated. Please commit these changes.');
|
||||
if (process.env.GITHUB_ACTIONS) {
|
||||
// Using console.warn() to avoid messing with find-inactive-tsc which
|
||||
// consumes stdout.
|
||||
console.warn('Generating new README.md file...');
|
||||
const newReadmeText = await moveTscToEmeritus(inactive);
|
||||
fs.writeFileSync(new URL('../README.md', import.meta.url), newReadmeText);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user