From 1cb6ae8d3572fa57fed37dbde67180dfa85b1dab Mon Sep 17 00:00:00 2001 From: Brittany Reese Markides <12763491+brittanyreese@users.noreply.github.com> Date: Fri, 3 Jul 2026 05:13:00 -0500 Subject: [PATCH] chore: add .mailmap to unify author identity The PR squash-merges landed under Brittany Reese (the GitHub account email) while direct commits used the GitHub noreply address, so the same author showed up as two contributors in git shortlog and the GitHub graph. Map both to the canonical Brittany Reese Markides <...noreply...> identity (matches CITATION.cff and keeps the personal email out of the public history). No history rewrite; shortlog and GitHub apply .mailmap at display time. Allowlist .mailmap in the scaffolding guard in the same commit, per its rule. --- .mailmap | 1 + scripts/check_no_scaffolding.sh | 1 + 2 files changed, 2 insertions(+) create mode 100644 .mailmap diff --git a/.mailmap b/.mailmap new file mode 100644 index 0000000..d788f68 --- /dev/null +++ b/.mailmap @@ -0,0 +1 @@ +Brittany Reese Markides <12763491+brittanyreese@users.noreply.github.com> diff --git a/scripts/check_no_scaffolding.sh b/scripts/check_no_scaffolding.sh index a13e4dd..cb7612c 100755 --- a/scripts/check_no_scaffolding.sh +++ b/scripts/check_no_scaffolding.sh @@ -19,6 +19,7 @@ allowed_toplevel=( ".env.example" ".github" ".gitignore" + ".mailmap" ".pre-commit-config.yaml" "AGENTS.md" "CHANGELOG.md"