docs: require ticket-closing pull requests #24
Workflow file for this run
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: Build and test | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: build-test-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| dotnet: | |
| name: Restore, format, build, and test | |
| runs-on: ubuntu-26.04 | |
| steps: | |
| - name: Check out the repository | |
| uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up .NET 10 | |
| uses: actions/setup-dotnet@v6 | |
| with: | |
| dotnet-version: 10.0.301 | |
| - name: Run the repository release gate | |
| run: >- | |
| ./scripts/verify-release | |
| --base-ref "${{ github.event.pull_request.base.sha }}" | |
| --expected-migration-count 2 |