chore(deps-dev): Update uvicorn requirement from <1.0,>=0.52.1 to >=0.52.3,<1.0 in /agent-governance-python/agent-hypervisor #5121
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
| # Copyright (c) Microsoft Corporation. Licensed under the MIT License. | |
| name: PR Title Check | |
| on: | |
| pull_request_target: | |
| types: [opened, edited, synchronize, reopened] | |
| permissions: | |
| contents: read | |
| jobs: | |
| semantic-title: | |
| name: Validate PR title | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: read # amannn/action-semantic-pull-request reads the PR title/body | |
| steps: | |
| - uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6.1.1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| types: | | |
| feat | |
| fix | |
| docs | |
| test | |
| refactor | |
| chore | |
| ci | |
| perf | |
| security | |
| examples | |
| build | |
| revert | |
| requireScope: false | |
| subjectPattern: ^(?![A-Z]).+$ | |
| subjectPatternError: | | |
| The PR title subject "{subject}" must not start with an uppercase letter. | |
| Use lowercase: "feat: add foo" not "feat: Add foo". |