fix: disable automatic e2e pipeline triggers#8135
Merged
Merged
Conversation
Set the Linux, Linux GPU, and Windows E2E Azure Pipelines to manual-only execution by using explicit trigger and PR exclusions. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
4c4fa0a to
3dd1871
Compare
timmy-wright
approved these changes
Mar 19, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
This PR disables automatic CI triggers for the E2E Azure Pipelines definitions, making the Linux, GPU, and Windows E2E pipelines manual-only.
Changes:
- Disable branch triggers in
.pipelines/e2e.yaml(trigger: none). - Disable PR validation triggers in
.pipelines/e2e.yaml(pr: none). - Apply the same manual-only trigger configuration to the GPU and Windows E2E pipelines.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
.pipelines/e2e.yaml |
Disables branch/PR triggers so the Linux E2E pipeline only runs when manually invoked. |
.pipelines/e2e-gpu.yaml |
Disables branch/PR triggers so the GPU E2E pipeline only runs when manually invoked. |
.pipelines/e2e-windows.yaml |
Disables branch/PR triggers so the Windows E2E pipeline only runs when manually invoked. |
cameronmeissner
approved these changes
Mar 19, 2026
ganeshkumarashok
added a commit
that referenced
this pull request
Mar 19, 2026
With the standalone GPU E2E pipeline triggers disabled in #8135, GPU E2E tests need to run as part of the VHD build pipeline. This adds a gpu_e2e stage that runs after the build stage, matching the configuration from the standalone e2e-gpu.yaml.
3 tasks
r2k1
pushed a commit
that referenced
this pull request
Apr 8, 2026
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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.
Summary
.pipelines/e2e.yamlmanual-only.pipelines/e2e-gpu.yamlmanual-only.pipelines/e2e-windows.yamlmanual-onlyTesting
git diff --check -- .pipelines/e2e.yaml .pipelines/e2e-gpu.yaml .pipelines/e2e-windows.yamlruby -e 'require "yaml"; %w[.pipelines/e2e.yaml .pipelines/e2e-gpu.yaml .pipelines/e2e-windows.yaml].each { |f| YAML.load_file(f) }; puts "YAML OK"'