diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 505188d..eb8816e 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,6 +1,6 @@ { "name": "ci_monitor", - "image": "micr.cloud.mioffice.cn/zhaoyingbo/dev:bun", + "image": "git.yingbo.im:333/zhaoyingbo/dev:bun", "remoteUser": "bun", "containerUser": "bun", "customizations": { diff --git a/bun.lockb b/bun.lockb index 0746628..db55d51 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/bunfig.toml b/bunfig.toml new file mode 100644 index 0000000..76ef786 --- /dev/null +++ b/bunfig.toml @@ -0,0 +1,2 @@ +[install] +registry = "https://registry.npmjs.org" \ No newline at end of file diff --git a/schedule/index.ts b/schedule/index.ts index 442646b..79bb937 100644 --- a/schedule/index.ts +++ b/schedule/index.ts @@ -3,8 +3,8 @@ import manageRobot from "../controllers/manageRobot"; import syncPipLine from "./syncPipLine"; const initSchedule = async () => { - // 每天十点钟发送CI报告 - scheduleJob("0 10 * * *", manageRobot.sendCIReportByCron); + // 每周五早上10点发送CI报告 + scheduleJob("0 10 * * 5", manageRobot.sendCIReportByCron); // 每15分钟同步一次CI数据 scheduleJob("*/15 * * * *", syncPipLine); // 立即同步一次