From 9bff2ad800016f04b116b7f16e4c3a1d3d00b0af Mon Sep 17 00:00:00 2001 From: Jevan Saks Date: Fri, 3 Jul 2026 21:58:14 -0700 Subject: [PATCH] Disable Azure Pipelines PR validation (PR testing moved to GitHub Actions) The azure-public 'microsoft.CsWin32' pipeline (azure-pipelines.yml) has no 'pr:' block, so Azure DevOps enables GitHub PR validation by default and keeps queuing a build / posting a status check on every PR. PR testing has moved to GitHub Actions (.github/workflows/build.yml), which runs more of the test matrix and works on forks. Set 'pr: none' so this pipeline no longer builds PRs; CI on main/v*/validate and release builds are unaffected. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- azure-pipelines.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 5091c513..5379ddd5 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -13,6 +13,12 @@ trigger: - .github/ - azure-pipelines/release.yml +# PR validation has moved to GitHub Actions (.github/workflows/build.yml), which runs more +# of the test matrix and works on forks. Disable Azure Pipelines PR validation so it no longer +# queues a build or posts a status check on GitHub pull requests. CI on the branches above and +# release builds continue to run. +pr: none + parameters: - name: EnableMacOSBuild displayName: Build on macOS