From 4863ad486a214b909ef02512164f752dac1d08cf Mon Sep 17 00:00:00 2001 From: Zach Montoya Date: Wed, 5 Aug 2020 10:07:59 -0700 Subject: [PATCH] Run the Azure DevOp packages pipeline nightly (#833) Schedule the packages build to run once daily at midnight if the source hasn't changed from the last scheduled run. This is typically not needed but currently the build is not being triggered on each merge, so this can act as a way to keep the packages build running consistently. --- .azure-pipelines/packages.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.azure-pipelines/packages.yml b/.azure-pipelines/packages.yml index f644d70f8..65d30a2b4 100644 --- a/.azure-pipelines/packages.yml +++ b/.azure-pipelines/packages.yml @@ -5,6 +5,13 @@ trigger: - refs/tags/* pr: none +schedules: +- cron: "0 0 * * *" + displayName: Daily midnight build + branches: + include: + - master + variables: buildConfiguration: release dotnetCoreSdkVersion: 3.1.x