From 3251b24503a47541b1d6e6a0c735a8c1f9f5d02a Mon Sep 17 00:00:00 2001 From: Chidozie Ononiwu Date: Fri, 29 May 2026 11:18:02 -0700 Subject: [PATCH] Remove stale version updater pipeline --- eng/pipelines/templates/jobs/update_pr.yml | 29 ---------------------- 1 file changed, 29 deletions(-) delete mode 100644 eng/pipelines/templates/jobs/update_pr.yml diff --git a/eng/pipelines/templates/jobs/update_pr.yml b/eng/pipelines/templates/jobs/update_pr.yml deleted file mode 100644 index 65d0041124d3..000000000000 --- a/eng/pipelines/templates/jobs/update_pr.yml +++ /dev/null @@ -1,29 +0,0 @@ -# Starter pipeline -# Start with a minimal pipeline that you can customize to build and deploy your code. -# Add steps that build, run tests, deploy, and more: -# https://aka.ms/yaml - -trigger: -- main - -variables: - skipComponentGovernanceDetection: true - -pool: - name: $(LINUXPOOL) - vmImage: $(LINUXVMIMAGE) - -steps: -- task: UsePythonVersion@0 - displayName: 'Use Python 3.10' - inputs: - versionSpec: '3.10' - -- script: | - python3 -m pip install -e $(Build.SourcesDirectory)/eng/tools/azure-sdk-tools[ghtools] - displayName: 'Install Azure SDK tools' - -- script: python3 -m packaging_tools.update_pr -v --pr-number $(System.PullRequest.PullRequestNumber) --repo $(Build.Repository.Name) - displayName: 'Update packaging of PR' - env: - GH_TOKEN: $(azuresdk-github-pat)