Skip to content
Draft
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
43 changes: 42 additions & 1 deletion .scripts/automation_generate.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,43 @@
#!/usr/bin/env bash
code-gen-pipeline --inputJsonPath=$1 --outputJsonPath=$2 --use=@autorest/[email protected] --typespecEmitter=@azure-tools/typespec-ts

cd ..

file_path="azure-rest-api-specs/.js/branch.txt"
# Check if the file exists
if [ -f "$file_path" ]; then
# Load the content of the file into a variable
branch=$(cat "$file_path")
echo "get branch $branch"
else
echo "Branch file does not exist."
fi

if [ -d "azure-sdk-tools" ]; then
echo "Delete folder azure-sdk-tools"
rm -rf azure-sdk-tools
else
echo "azure-sdk-tools folder does not exist."
fi

echo 'clone azure-sdk-tools'
git clone https://github.com/Azure/azure-sdk-tools/

cd azure-sdk-tools
if [ -z "$branch" ]; then
echo 'branch is empty'
else
git checkout -b test $branch
echo git checkout -b test $branch
fi

echo '-------------- git status start'
git status
echo '-------------- git status end'

cd tools/js-sdk-release-tools
npm install
npm run build
cd ../../..

cd azure-sdk-for-js
node ../azure-sdk-tools/tools/js-sdk-release-tools/dist/autoGenerateInPipeline.js --inputJsonPath=$1 --outputJsonPath=$2 --use=@autorest/typescript@^6.0.12 --typespecEmitter=@azure-tools/typespec-ts
27 changes: 6 additions & 21 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions sdk/healthdataaiservices/ci.mgmt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,13 @@ trigger:
- main
- release/*
- hotfix/*
exclude:
- feature/v4
paths:
include:
- sdk/healthdataaiservices/ci.mgmt.yml
- sdk/healthdataaiservices/arm-healthdataaiservices
- sdk/healthdataaiservices/health-deidentification-rest
pr:
branches:
include:
Expand All @@ -23,10 +26,13 @@ pr:
include:
- sdk/healthdataaiservices/ci.mgmt.yml
- sdk/healthdataaiservices/arm-healthdataaiservices
- sdk/healthdataaiservices/health-deidentification-rest
extends:
template: /eng/pipelines/templates/stages/archetype-sdk-client.yml
parameters:
ServiceDirectory: healthdataaiservices
Artifacts:
- name: azure-arm-healthdataaiservices
safeName: azurearmhealthdataaiservices
- name: azure-rest-health-deidentification
safeName: azureresthealthdeidentification
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release History

## 2.0.0-beta.1 (2025-10-24)
Compared with version 1.0.0

Please manually update the changelog with the appropriate changes.

## 1.1.0-beta.1 (2025-09-30)

### Features Added
Expand Down
Loading