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)