feat: 添加简报收集器功能
All checks were successful
Egg CI/CD / build-image (push) Successful in 21s
Egg CI/CD / deploy (push) Successful in 22s

This commit is contained in:
zhaoyingbo 2024-05-17 13:01:25 +00:00
parent 08f7857c4f
commit 00b6fc6984

View File

@ -84,7 +84,8 @@ const manageCMDMsg = async (body: LarkMessageEvent) => {
if (text === "/ci") {
msgContent = await fetchCIMonitor();
}
console.log("🚀 ~ manageCMDMsg ~ 简报:", text.includes("简报"));
console.log("🚀 ~ manageCMDMsg ~ share:", text.includes("share"));
if (text.includes("share") && text.includes("简报")) {
msgContent = await fetchReportCollector(text);
}