From 7b2bd3dd4926075fd6a83c46e15fa6065b05ec4d Mon Sep 17 00:00:00 2001 From: MSLukeWest <42553283+MSLukeWest@users.noreply.github.com> Date: Thu, 10 Oct 2024 10:00:44 -0700 Subject: [PATCH] Updating pipeline to run twice a month, even if there's no changes (#96) Co-authored-by: Luke Westendorf --- azure-pipelines.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index dafbe7a..92702c5 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -21,6 +21,14 @@ pr: - d16-* - d17-* +schedules: +- cron: "0 0 1,15 * *" # Runs at midnight (UTC) on the 1st and 15th of every month + displayName: "Twice a Month Schedule" + branches: + include: + - main + always: true # Ensures it runs even if there are no code changes + variables: - template: /build/variables.yml@self