From 8c2e4a30d07e0383094d5d86cfa0cb6980c6a9cc Mon Sep 17 00:00:00 2001 From: Matt Miller Date: Tue, 2 Jun 2026 01:33:29 -0700 Subject: [PATCH] fix(cursor-review): correct Matt's handle in slack-notify DM map MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The centralized slack-notify.sh (sourced from comfy-cloud-mcp-server) still mapped the retired `millermedia` GitHub handle, which now belongs to a different account — so cursor-review DMs to Matt resolve the wrong email (or none). cloud's copy already uses `mattmillerai`; match it. Single-key change; rest of GITHUB_EMAIL_MAP is identical to cloud's. Co-Authored-By: Claude Opus 4.8 --- .github/cursor-review/slack-notify.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/cursor-review/slack-notify.sh b/.github/cursor-review/slack-notify.sh index de2c732..6016e64 100755 --- a/.github/cursor-review/slack-notify.sh +++ b/.github/cursor-review/slack-notify.sh @@ -40,7 +40,7 @@ if [ -n "${SLACK_BOT_TOKEN:-}" ] && [ -n "${DM_GITHUB_USER:-}" ]; then # GitHub handle doesn't match their email prefix. Keys are lowercase for # case-insensitive lookup (GitHub usernames are case-insensitive). declare -A GITHUB_EMAIL_MAP - GITHUB_EMAIL_MAP[millermedia]=mattmiller + GITHUB_EMAIL_MAP[mattmillerai]=mattmiller GITHUB_EMAIL_MAP[huntcsg]=hunter GITHUB_EMAIL_MAP[skishore23]=kishore GITHUB_EMAIL_MAP[robinjhuang]=robin