Skip to content

Commit b2015a7

Browse files
committed
Add daily scheduled trigger to azure-pipelines.yml (11:45 PM Pacific, dev only)
1 parent 5ce2b22 commit b2015a7

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

azure-pipelines.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# PR gate and branch CI for the msal Python package.
2-
# Runs on pushes to dev/azure-pipelines and on all pull requests.
2+
# Runs on pushes to dev/azure-pipelines, on all pull requests, and on a daily schedule.
33
# Delegates all stages to .Pipelines/template-pipeline-stages.yml with
44
# runPublish: false — PreBuildCheck (SDL scans) + CI (test matrix) only.
55

@@ -12,6 +12,14 @@ pr:
1212
include:
1313
- '*'
1414

15+
schedules:
16+
- cron: '45 7 * * *' # 11:45 PM Pacific (UTC-8) / matches legacy MSAL-Python-SDL-CI schedule
17+
displayName: 'Daily SDL + CI (dev)'
18+
branches:
19+
include:
20+
- dev
21+
always: false # only run when there are new changes
22+
1523
stages:
1624
- template: .Pipelines/template-pipeline-stages.yml
1725
parameters:

0 commit comments

Comments
 (0)