feat: notify naomi of name and title mentions
Node.js CI / CI (pull_request) Successful in 28s
Security Scan and Upload / Security & DefectDojo Upload (pull_request) Successful in 56s

This commit is contained in:
2026-03-02 13:34:11 -08:00
committed by Naomi Carrigan
parent f2f6775ab1
commit 8ee5fa7ced
2 changed files with 70 additions and 0 deletions
+2
View File
@@ -5,6 +5,7 @@
*/
import { ids } from "../config/ids.js";
import { notifyNameMention } from "../modules/notifyNameMention.js";
import { respondToMention } from "../modules/respondToMention.js";
import { updateMentorshipThread } from "../modules/updateMentorshipThread.js";
import type { Amari } from "../interfaces/amari.js";
@@ -29,4 +30,5 @@ export const handleMessageCreate = async(
}
await updateMentorshipThread(amari, message);
await respondToMention(amari, message);
await notifyNameMention(amari, message);
};