Temporarily disable Helix JobMonitor - #68866
Merged
Merged
Conversation
Gate Helix JobMonitor submission and monitor jobs behind a pipeline variable that defaults to false while preserving the existing enabled behavior. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the repo’s Azure DevOps pipeline definitions to temporarily disable the Helix JobMonitor to reduce Azure DevOps load, while keeping the wiring in place behind a single pipeline variable so it can be re-enabled without reworking the pipeline structure.
Changes:
- Introduces an
enableHelixJobMonitorpipeline variable (defaultfalse) in Helix-related pipelines. - Routes
/p:EnableHelixJobMonitorto use$(enableHelixJobMonitor)instead of hardcodingtrue. - Adds a
conditionparameter to thehelix-job-monitor.ymljob template invocation so the monitor job only runs whenenableHelixJobMonitoris enabled.
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| .azure/pipelines/template-tests-pr.yml | Adds enableHelixJobMonitor variable, plumbs it into Helix invocation, and conditionally disables the JobMonitor job for PR template tests. |
| .azure/pipelines/identitymodel-helix-matrix.yml | Adds the variable and gates JobMonitor execution for the identitymodel Helix schedule/matrix pipeline. |
| .azure/pipelines/helix-matrix.yml | Adds the variable and disables JobMonitor by default for the main Helix matrix pipeline. |
| .azure/pipelines/ci.yml | Adds the variable and gates the Helix JobMonitor job in the main CI pipeline. |
| .azure/pipelines/ci-unofficial.yml | Adds the variable and gates the Helix JobMonitor job for the unofficial CI pipeline. |
| .azure/pipelines/ci-public.yml | Adds the variable and gates the Helix JobMonitor job for the public CI pipeline. |
💡 Add a code-review agent skill for context-aware, tailored reviews. Learn more in the docs.
mmitche
approved these changes
Aug 27, 2026
mmitche
enabled auto-merge (squash)
August 27, 2026 23:40
mmitche
disabled auto-merge
August 27, 2026 23:41
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.
Temporarily disabling JobMonitor to reduce Azure DevOps load.
The existing JobMonitor wiring is retained behind the
enableHelixJobMonitorpipeline variable so it can be restored by changing the variable totrue.Tracking: dnceng/internal#12380