SDK Generation for MySQL FlexibleServers TypeSpec Project (API Version 2024-12-30) #53774
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: TypeSpec Migration Validation | |
on: | |
pull_request: | |
types: [edited, labeled, unlabeled, opened, reopened, synchronize] | |
permissions: | |
contents: read | |
jobs: | |
typespec-migration-validation: | |
name: TypeSpec Migration Validation | |
if: contains(join(github.event.pull_request.labels.*.name, ','), 'typespec-conversion-w') | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Setup Node and install deps | |
uses: ./.github/actions/setup-node-install-deps | |
- name: Run TypeSpec Migration Validation | |
run: | | |
./eng/tools/typespec-migration-validation/scripts/download-main.ps1 -Verbose -reportFile $env:GITHUB_STEP_SUMMARY | |
shell: pwsh |