Skip to content

Commit c401f31

Browse files
Copilotradical
andauthored
[CI] Change AzDO public pipeline to run weekly instead of per-commit (#9437)
* Initial plan for issue * Change AzDO pipeline to run on weekly schedule Co-authored-by: radical <[email protected]> --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: radical <[email protected]>
1 parent ca9fc4d commit c401f31

File tree

1 file changed

+8
-13
lines changed

1 file changed

+8
-13
lines changed

eng/pipelines/azure-pipelines-public.yml

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,15 @@
1-
trigger:
2-
batch: true
1+
# Replaced per issue request - changed from per-commit to weekly schedule
2+
schedules:
3+
- cron: "0 0 * * 1" # Run at midnight (UTC) on Monday each week
4+
displayName: Weekly Monday build
35
branches:
46
include:
57
- main
68
- release/*
7-
paths:
8-
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
9+
always: true # Run even when there are no code changes
10+
11+
# Excluding normal trigger as we're now using schedules
12+
trigger: none
1813

1914
pr:
2015
branches:

0 commit comments

Comments
 (0)