ci: fix timezone and timeout for burn-in pipeline - #4381
Merged
Trevor Jones (tjones60) merged 1 commit intoSep 3, 2026
Conversation
Contributor
There was a problem hiding this comment.
🟢 Approval recommended
The timezone and timeout changes are consistently wired through the Flowey pipeline types, YAML generation, and the regenerated workflow output.
Pull request overview
This PR fixes the Burn In GitHub Actions schedule to run at 7PM Pacific time as originally intended (rather than being interpreted in UTC), and increases the job timeout to accommodate the expected multi-hour runtime.
Changes:
- Add optional IANA timezone support to Flowey’s
GhScheduleTriggersand propagate it into the generated GitHub Actions YAML. - Configure the burn-in pipeline schedule to use
America/Los_Angeles. - Increase the burn-in workflow job timeout to 900 minutes (15 hours).
File summaries
| File | Description |
|---|---|
| flowey/flowey_hvlite/src/pipelines/burn_in.rs | Sets the burn-in schedule timezone and increases pipeline job timeout. |
| flowey/flowey_core/src/pipeline.rs | Extends GhScheduleTriggers to include an optional timezone field. |
| flowey/flowey_cli/src/pipeline_resolver/github_yaml/mod.rs | Propagates the new timezone field into generated GitHub YAML schedule entries. |
| flowey/flowey_cli/src/pipeline_resolver/github_yaml/github_yaml_defs.rs | Adds timezone to the serialized Cron schema (omitted when None). |
| .github/workflows/openvmm-burn-in.yaml | Regenerated workflow reflecting the timezone and 15-hour timeout settings. |
Review details
- Files reviewed: 5/5 changed files
- Comments generated: 0
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Steven Malis (smalis-msft)
approved these changes
Sep 3, 2026
Trevor Jones (tjones60)
merged commit Sep 3, 2026
772d42e
into
microsoft:main
72 of 73 checks passed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Set the timezone so it starts at 7PM as intended instead of noon, and increase the timeout from the default of 6 hours to 15 hours.