From 2c08f8db6132745b3b50e417231a20f0c6f04f29 Mon Sep 17 00:00:00 2001 From: scbedd <45376673+scbedd@users.noreply.github.com> Date: Tue, 12 Jan 2021 13:49:16 -0800 Subject: [PATCH 1/2] update to pull from a tag, rather than a SHA --- eng/common/pipelines/templates/steps/get-pr-owners.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/common/pipelines/templates/steps/get-pr-owners.yml b/eng/common/pipelines/templates/steps/get-pr-owners.yml index 545143ce09..f8faa238a5 100644 --- a/eng/common/pipelines/templates/steps/get-pr-owners.yml +++ b/eng/common/pipelines/templates/steps/get-pr-owners.yml @@ -6,7 +6,7 @@ steps: - pwsh: | git clone https://github.com/Azure/azure-sdk-tools.git $(Build.SourcesDirectory)/tools_repo cd $(Build.SourcesDirectory)/tools_repo - git checkout 35ad98f821913eb0e8872f861ee60589b563c865 + git checkout latest-stable-tools displayName: Setup Identity Resolver - pwsh: | From c85655f6712919f5456ca2617cb7200b8163ff6a Mon Sep 17 00:00:00 2001 From: scbedd <45376673+scbedd@users.noreply.github.com> Date: Thu, 14 Jan 2021 15:20:08 -0800 Subject: [PATCH 2/2] retarget the tool clone to a release tag --- eng/common/pipelines/templates/steps/get-pr-owners.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/common/pipelines/templates/steps/get-pr-owners.yml b/eng/common/pipelines/templates/steps/get-pr-owners.yml index f8faa238a5..bf2ee00ffc 100644 --- a/eng/common/pipelines/templates/steps/get-pr-owners.yml +++ b/eng/common/pipelines/templates/steps/get-pr-owners.yml @@ -6,7 +6,7 @@ steps: - pwsh: | git clone https://github.com/Azure/azure-sdk-tools.git $(Build.SourcesDirectory)/tools_repo cd $(Build.SourcesDirectory)/tools_repo - git checkout latest-stable-tools + git checkout azure-sdk-tools_20210114.1 displayName: Setup Identity Resolver - pwsh: |