Bump dotnet-sdk from 8.0.415 to 8.0.416 #6059
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: PR Compliance | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| types: [opened, synchronize, reopened, labeled, unlabeled] | |
| jobs: | |
| check-for-docs-label: | |
| name: Check for Docs label | |
| if: ${{ !(contains(github.event.pull_request.labels.*.name, '📘 Docs Needed') || contains(github.event.pull_request.labels.*.name, '📘 Docs Not Needed') || contains(github.event.pull_request.labels.*.name, 'dependencies')) }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Docs label is missing | |
| run: | | |
| echo 'All PRs must either have the `📘 Docs Needed` or `📘 Docs Not Needed` label applied' >> $GITHUB_STEP_SUMMARY | |
| exit 1 |