Add weekly scheduled CI workflow#2757
Open
marcpopMSFT with Copilot wants to merge 6 commits into
Open
Conversation
Co-authored-by: marcpopMSFT <12663534+marcpopMSFT@users.noreply.github.com>
Co-authored-by: marcpopMSFT <12663534+marcpopMSFT@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
marcpopMSFT
July 13, 2026 22:41
View session
Co-authored-by: marcpopMSFT <12663534+marcpopMSFT@users.noreply.github.com>
Co-authored-by: marcpopMSFT <12663534+marcpopMSFT@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR aims to ensure CI runs regularly even when commits are infrequent by introducing a weekly scheduled run. In the current diff, this is implemented as an Azure Pipelines scheduled trigger (not as a new GitHub Actions workflow as stated in the PR description).
Changes:
- Add a weekly Monday 08:00 UTC scheduled trigger to the Azure Pipelines definition (
1es-azure-pipeline.yml) for themainbranch. - Ensure the scheduled run executes regardless of recent changes (
always: true).
Comment on lines
+18
to
+24
| schedules: | ||
| - cron: '0 8 * * 1' | ||
| displayName: Weekly Monday build | ||
| branches: | ||
| include: | ||
| - main | ||
| always: true |
…hedule change Co-authored-by: marcpopMSFT <12663534+marcpopMSFT@users.noreply.github.com>
Co-authored-by: marcpopMSFT <12663534+marcpopMSFT@users.noreply.github.com>
nagilson
reviewed
Jul 16, 2026
nagilson
left a comment
Member
There was a problem hiding this comment.
Is the code QL flagger upset because of the PR builds, the CI builds, or both? This only builds on the internal CI build; the pr yml is 1pr-azure-pipeline.
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.
Pipeline checks weren't running reliably due to infrequent commits. This adds a scheduled workflow to ensure CI runs regularly regardless of commit activity.
Changes