Skip to content

Commit

Permalink
Move runtime rolling builds to run twice a day on main (dotnet#59884)
Browse files Browse the repository at this point in the history
* Move runtime rolling builds to run twice a day on main

* Update eng/pipelines/runtime.yml
  • Loading branch information
safern authored Oct 2, 2021
1 parent 7af224e commit fd5a65c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion eng/pipelines/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ trigger:
batch: true
branches:
include:
- main
- release/*.*
paths:
include:
Expand All @@ -24,6 +23,14 @@ trigger:
- SECURITY.md
- THIRD-PARTY-NOTICES.TXT

schedules:
- cron: "0 8,20 * * *" # run at 8:00 and 20:00 (UTC) which is 00:00 and 12:00 (PST).
displayName: Runtime default schedule
branches:
include:
- main
always: false # run only if there were changes since the last successful scheduled run.

pr:
branches:
include:
Expand Down

0 comments on commit fd5a65c

Please sign in to comment.