Explorar o código

ci: scheduled run

Execute the pipeline every week to catch build-issues early.
[Azure DevOps](https://learn.microsoft.com/en-us/azure/devops/pipelines/process/scheduled-triggers?view=azure-devops&pivots=pipelines-yaml#cron-syntax)
Lukas Kurz hai 4 meses
pai
achega
e8ec0aaf13
Modificáronse 1 ficheiros con 9 adicións e 0 borrados
  1. 9 0
      azure-pipelines.yml

+ 9 - 0
azure-pipelines.yml

@@ -7,6 +7,15 @@ trigger:
 - master
 - release/*
 
+schedules:
+- cron: "0 0 * * 1" # At 00:00 on Monday
+  displayName: Weekly Monday Midnight
+  branches:
+    include:
+    - master
+    - release/*
+  always: true
+
 jobs:
   - job: Style
     timeoutInMinutes: 10