From 6952f062a6c6aa605ea0a4c38d0a5beb5b351b40 Mon Sep 17 00:00:00 2001 From: Carter Tinney Date: Mon, 31 Aug 2026 15:58:33 -0700 Subject: [PATCH 1/2] ci: make Azure Pipelines PR triggers explicit Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- vsts/build.yaml | 10 ++++++++++ vsts/dps-e2e.yaml | 10 ++++++++++ vsts/python-e2e.yaml | 10 ++++++++++ 3 files changed, 30 insertions(+) diff --git a/vsts/build.yaml b/vsts/build.yaml index f9a3b9d91..717fd2e37 100644 --- a/vsts/build.yaml +++ b/vsts/build.yaml @@ -1,3 +1,13 @@ +trigger: + branches: + include: + - main + +pr: + branches: + include: + - main + resources: - repo: self diff --git a/vsts/dps-e2e.yaml b/vsts/dps-e2e.yaml index 72987cca7..863bc9621 100644 --- a/vsts/dps-e2e.yaml +++ b/vsts/dps-e2e.yaml @@ -1,3 +1,13 @@ +trigger: + branches: + include: + - main + +pr: + branches: + include: + - main + resources: - repo: self #Multi-configuration and multi-agent job options are not exported to YAML. Configure these options using documentation guidance: https://docs.microsoft.com/vsts/pipelines/process/phases diff --git a/vsts/python-e2e.yaml b/vsts/python-e2e.yaml index 7fb8309b3..304036db0 100644 --- a/vsts/python-e2e.yaml +++ b/vsts/python-e2e.yaml @@ -1,3 +1,13 @@ +trigger: + branches: + include: + - main + +pr: + branches: + include: + - main + name: $(BuildID)_$(BuildDefinitionName)_$(SourceBranchName) variables: From 3aa475469dc9d8a2e23f05edb51e9af774ef1353 Mon Sep 17 00:00:00 2001 From: Carter Tinney Date: Mon, 31 Aug 2026 16:58:25 -0700 Subject: [PATCH 2/2] ci: retrigger Azure Pipelines Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>