From 11e1d213055d4ceeed470743d1f404aabe65348b Mon Sep 17 00:00:00 2001 From: Phoenix He Date: Fri, 7 Feb 2020 10:48:09 +0800 Subject: [PATCH 1/2] Fix SDK Automation auto cancel issue --- .azure-pipelines/SDKAutomation.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.azure-pipelines/SDKAutomation.yml b/.azure-pipelines/SDKAutomation.yml index 521308755773..bc1d551b0d9c 100644 --- a/.azure-pipelines/SDKAutomation.yml +++ b/.azure-pipelines/SDKAutomation.yml @@ -2,7 +2,10 @@ trigger: batch: false branches: include: - - "*" + - master + +pr: + autoCancel: false jobs: - job: "SDKAutomation" From 0fdbdaa2042244bb6577dd8ce830080984727cb1 Mon Sep 17 00:00:00 2001 From: Phoenix He Date: Mon, 10 Feb 2020 14:36:23 +0800 Subject: [PATCH 2/2] Disable autoCancel in all pipeline --- azure-pipelines.yml | 3 +++ preproduction-azure-pipelines.yml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 68da20933d61..99db62225099 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -5,6 +5,9 @@ trigger: include: - master +pr: + autoCancel: false + variables: TRAVIS: 'true' TRAVIS_BRANCH: $(System.PullRequest.TargetBranch) diff --git a/preproduction-azure-pipelines.yml b/preproduction-azure-pipelines.yml index d2b59829aad7..acfd68e91a4f 100644 --- a/preproduction-azure-pipelines.yml +++ b/preproduction-azure-pipelines.yml @@ -2,6 +2,9 @@ name: "Preproduction CI for Azure Rest API specifications" trigger: none +pr: + autoCancel: false + variables: TRAVIS: 'true' TRAVIS_BRANCH: $(System.PullRequest.TargetBranch)