Add 2026-06-01-preview API version for Microsoft.Devices/DeviceProvisioningServices #108318
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@v6 | |
| 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 |