schedules:
- cron: "0 0 30 * *"
  displayName: Monthly midnight build
  branches:
    include:
    - main

jobs:
- job: Phase_1
  displayName: Phase 1
  cancelTimeoutInMinutes: 1
  pool:
    vmImage: 'windows-2019'
  steps:
  - checkout: self
    clean: true
    persistCredentials: true
  - task: CodeInspector@2
    inputs:
      ProductId: '88079879-ba3a-4bf7-8f43-5bc912c8cd04'
  - task: PublishSecurityAnalysisLogs@3
    inputs:
      ArtifactName: 'CodeAnalysisLogs'
      ArtifactType: 'Container'
      AllTools: true
      ToolLogsNotFoundAction: 'Standard'
...
