zhaoyingbo 18a95387ee
All checks were successful
CI Monitor CI/CD / build-image (push) Successful in 33s
CI Monitor CI/CD / deploy (push) Successful in 37s
chore: 更新lint-staged和commitlint配置
2024-07-25 01:09:24 +00:00

16 lines
425 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