Add Executable launch profile support to dotnet run and dotnet watch #15099
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: PR Analysis | |
| on: | |
| pull_request_target: | |
| types: [opened, synchronize, labeled, unlabeled, ready_for_review] | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| jobs: | |
| allowed-labels: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Return error if blocking labels are present in PR | |
| run: echo "Labels on this PR prevent it from being merged. Please contact the repo owners for more information." && exit 1 | |
| if: ${{ contains(github.event.pull_request.labels.*.name, 'Branch Lockdown') || contains(github.event.pull_request.labels.*.name, 'DO NOT MERGE') || contains(github.event.pull_request.labels.*.name, 'Servicing-consider') || contains(github.event.pull_request.labels.*.name, 'Servicing-more-info') || contains(github.event.pull_request.labels.*.name, 'Servicing-rejected') }} |