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.
This commit is contained in:
Zach Montoya 2020-08-05 10:07:59 -07:00 committed by GitHub
parent 2ab6ad437d
commit 4863ad486a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -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