zhaoyingbo ba71a09887
All checks were successful
CI Monitor CI/CD / build-image (push) Successful in 30s
CI Monitor CI/CD / deploy (push) Successful in 30s
feat: 更新CI报告发送时间为每周五早上10点
2024-06-29 03:44:31 +00:00

14 lines
430 B
TypeScript

import { scheduleJob } from "node-schedule";
import manageRobot from "../controllers/manageRobot";
import syncPipLine from "./syncPipLine";
const initSchedule = async () => {
// 每周五早上10点发送CI报告
scheduleJob("0 10 * * 5", manageRobot.sendCIReportByCron);
// 每15分钟同步一次CI数据
scheduleJob("*/15 * * * *", syncPipLine);
// 立即同步一次
syncPipLine();
}
export default initSchedule;