We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca9fc4d commit c401f31Copy full SHA for c401f31
eng/pipelines/azure-pipelines-public.yml
@@ -1,20 +1,15 @@
1
-trigger:
2
- batch: true
+# Replaced per issue request - changed from per-commit to weekly schedule
+schedules:
3
+- cron: "0 0 * * 1" # Run at midnight (UTC) on Monday each week
4
+ displayName: Weekly Monday build
5
branches:
6
include:
7
- main
8
- release/*
- paths:
- include:
9
- - '*'
10
- exclude:
11
- - '**.md'
12
- - eng/Version.Details.xml
13
- - .github/*
14
- - docs/*
15
- - LICENSE.TXT
16
- - PATENTS.TXT
17
- - THIRD-PARTY-NOTICES.TXT
+ always: true # Run even when there are no code changes
+
+# Excluding normal trigger as we're now using schedules
+trigger: none
18
19
pr:
20
0 commit comments