We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d16d36f commit e58cf4eCopy full SHA for e58cf4e
tools/find-inactive-collaborators.mjs
@@ -79,6 +79,9 @@ async function getCollaboratorsFromReadme() {
79
const mailmap = await runGitCommand(
80
`git check-mailmap '${name} <${email}>'`
81
);
82
+ if (mailmap !== `${name} <${email}>`) {
83
+ console.log(`README entry for Collaborator does not match mailmap:\n ${name} <${email}> => ${mailmap}`);
84
+ }
85
returnedArray.push({
86
name,
87
email,
0 commit comments