Skip to content
This repository was archived by the owner on May 22, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@
# Automation
################

* @iscai-msft @msyyc @changlong-liu

# Git Hub bot rules
/.github/fabricbot.json @AlexGhiondea @jsquire
17 changes: 16 additions & 1 deletion eng/pipelines/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,19 @@ parameters:
default:
- name: azure-messaging-webpubsubservice
service: webpubsub
branchName: main
- name: azure-storage-blob
service: storage
branchName: feature/storage-autorest
- name: azure-storage-queue
service: storage
branchName: feature/storage-autorest
- name: azure-storage-file-datalake
service: storage
branchName: feature/storage-autorest
- name: azure-storage-file-share
service: storage
branchName: feature/storage-autorest

jobs:
- job: "AutoRest_Python_CI"
Expand Down Expand Up @@ -204,7 +217,7 @@ jobs:

- ${{ if eq(ne(variables['Build.Reason'], 'PullRequest'), 'True') }}:
- script: |
git clone https://github.com/Azure/azure-sdk-for-python.git --depth=1 --branch main $(Build.SourcesDirectory)/regenerated/
git clone https://github.com/Azure/azure-sdk-for-python.git $(Build.SourcesDirectory)/regenerated/
displayName: 'Clone python repo'

- script: |
Expand All @@ -214,6 +227,8 @@ jobs:

- ${{ each package in parameters.VerificationPackages }}:
- script: |
git fetch origin
git checkout ${{ package.branchName }}
autorest ./swagger/README.md --use=$(Build.SourcesDirectory)
displayName: 'Regenerate target package ${{ package.name }}'
workingDirectory: '$(Build.SourcesDirectory)/regenerated/sdk/${{ package.service }}/${{ package.name }}'
Expand Down