Azure cron 计划管道总是 运行(没有构建失败)
Azure cron scheduled pipeline always running (without failing builds)
Azure 计划的管道为主控中的每次推送运行。
我错过了什么?
这是 yaml 代码:
schedules:
- cron: "0 23 * * *"
displayName: Nightly build
branches:
include:
- master
显然,之前的构建并没有失败。
我已经尝试删除此管道并重新创建它,但每次推送都会保留 运行。
预定的运行是正确的:
好的,我想我明白了。
刚刚将以下行添加到 yml 文件,它不再在每次推送时运行计划的管道。
trigger: none
pr: none
Azure 计划的管道为主控中的每次推送运行。
我错过了什么?
这是 yaml 代码:
schedules:
- cron: "0 23 * * *"
displayName: Nightly build
branches:
include:
- master
显然,之前的构建并没有失败。 我已经尝试删除此管道并重新创建它,但每次推送都会保留 运行。
预定的运行是正确的:
好的,我想我明白了。
刚刚将以下行添加到 yml 文件,它不再在每次推送时运行计划的管道。
trigger: none
pr: none