如何使用 Azure DevOps 专门安排管道

How to Specifically Schedule Pipelines with Azure DevOps

如何在 AzurDevOps 中安排一次性 运行、非重复管道。我想为我们的 UAT 环境创建这个管道,但我不想手动 运行 它,所以我在想有没有办法可以将多个特定日期放入 运行 管道?

简而言之,我们无法在 DevOps 中安排 non-repeating 管道,因为它使用 cron syntax 定义了时间表。 每个 Azure Pipelines 计划触发器 cron 表达式都是一个包含五个条目(分钟、小时、天、月、星期几)的 space-delimited 表达式。

如果您需要在某些特定日期 运行 管道,作为解决方法,请安排在您的末端并调用 Rest API 到 运行 您的管道。

有详细步骤:https://blog.geralexgr.com/cloud/trigger-azure-devops-build-pipelines-using-rest-api.