我有这个 yaml 管道:
trigger:
- none
schedules:
- cron: '0 20 * * Mon-Fri'
displayName: Weekday
branches:
include:
- main
always: true
- cron: '0 8 * * Sat-Sun'
displayName: Weekend
branches:
include:
- main
always: true
微软在其示例之一中声明这是可能的: 微软 yaml 示例
但是,我并没有按预期工作(一个安排在工作日触发,另一个仅在周末触发),我每天都会触发。
我做错了什么,它可能不受支持,但微软文档已经过时,有任何线索吗?谢谢!