From 4c88f2e47e9c5a4d844366cb320ed8b9752881ae Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Wed, 4 Mar 2026 10:27:00 +0100 Subject: [PATCH] [devops] Treat 'merge/' branches as pull request branches. These branches come from the inter-branch-merge workflow (.github/workflows/inter-branch-merge-flow.yml). Example: https://github.com/dotnet/macios/pull/24809. --- tools/devops/automation/build-pipeline.yml | 1 + tools/devops/automation/build-pull-request.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/tools/devops/automation/build-pipeline.yml b/tools/devops/automation/build-pipeline.yml index 8d6144a93a56..97824c8abe3b 100644 --- a/tools/devops/automation/build-pipeline.yml +++ b/tools/devops/automation/build-pipeline.yml @@ -74,6 +74,7 @@ trigger: - refs/heads/locfiles/* - refs/heads/copilot/* - refs/heads/dependabot/* + - refs/heads/merge/* paths: exclude: diff --git a/tools/devops/automation/build-pull-request.yml b/tools/devops/automation/build-pull-request.yml index 4250b5c5f5ac..66cb04b28378 100644 --- a/tools/devops/automation/build-pull-request.yml +++ b/tools/devops/automation/build-pull-request.yml @@ -60,6 +60,7 @@ trigger: - refs/heads/locfiles/* - refs/heads/copilot/* - refs/heads/dependabot/* + - refs/heads/merge/* pr: autoCancel: true