Merge pull request #9854 from dylanstetts/patch-12 #4001
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: Validate changelog JSONs | |
| on: [pull_request,push] | |
| permissions: | |
| contents: read | |
| jobs: | |
| verify-json-validation: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Validate Changelog JSONs with Schema | |
| run: | | |
| ./scripts/validate-changelog-json.ps1 | |
| shell: pwsh |