We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ce2b22 commit b2015a7Copy full SHA for b2015a7
azure-pipelines.yml
@@ -1,5 +1,5 @@
1
# PR gate and branch CI for the msal Python package.
2
-# Runs on pushes to dev/azure-pipelines and on all pull requests.
+# Runs on pushes to dev/azure-pipelines, on all pull requests, and on a daily schedule.
3
# Delegates all stages to .Pipelines/template-pipeline-stages.yml with
4
# runPublish: false — PreBuildCheck (SDL scans) + CI (test matrix) only.
5
@@ -12,6 +12,14 @@ pr:
12
include:
13
- '*'
14
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
+
23
stages:
24
- template: .Pipelines/template-pipeline-stages.yml
25
parameters:
0 commit comments