Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions eng/pipelines/runtime-diagnostics.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
trigger: none

schedules:
- cron: "0 10 * * *" # run at 10:00 (UTC) which is 2:00 (PST).
displayName: Runtime Diagnostics scheduled run
branches:
include:
- main
always: true

resources:
repositories:
- repository: diagnostics
type: github
name: dotnet/diagnostics
endpoint: public

variables:
- template: /eng/pipelines/common/variables.yml

schedules:
- cron: "30 2 * * *"
displayName: Every night at 2:30AM
branches:
include:
- main
always: true

extends:
template: /eng/pipelines/common/templates/pipeline-with-resources.yml
parameters:
stages:
- stage: Build
jobs:
Loading