chore(deps): bump pydantic-settings from 2.14.0 to 2.14.2 #50
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 title lint | |
| on: | |
| # Safe: only reads PR title via github context, never checks out code. | |
| pull_request_target: # zizmor: ignore[dangerous-triggers] | |
| types: [opened, edited, synchronize, reopened] | |
| permissions: | |
| pull-requests: read # check PR title against conventional commit format | |
| concurrency: | |
| group: pr-title-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| conventional-commit: | |
| name: Enforce conventional commit PR title | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6.1.1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| types: | | |
| feat | |
| fix | |
| perf | |
| refactor | |
| docs | |
| test | |
| build | |
| ci | |
| chore | |
| style | |
| revert | |
| requireScope: false | |
| subjectPattern: ^(?![A-Z]).+$ | |
| subjectPatternError: | | |
| The PR title subject "{subject}" must start with a lowercase letter. |