fix(deps): update rust crate pyo3 to 0.28 #42
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 Validation | |
| on: | |
| pull_request_target: | |
| types: | |
| - opened | |
| - reopened | |
| - edited | |
| jobs: | |
| validate-pr-title: | |
| name: Validate PR Title | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: read | |
| steps: | |
| - uses: amannn/action-semantic-pull-request@v5 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| # Configure which types are allowed (must match release-please config) | |
| types: | | |
| feat | |
| fix | |
| docs | |
| chore | |
| refactor | |
| test | |
| ci | |
| perf | |
| build | |
| style | |
| infra | |
| # Require a scope (optional - can be removed if scopes aren't required) | |
| requireScope: false | |
| # Subjects must not be sentence-case, start-case, pascal-case, or upper-case | |
| subjectPattern: ^(?![A-Z]).+$ | |
| subjectPatternError: | | |
| The subject "{subject}" found in the pull request title "{title}" | |
| didn't match the configured pattern. Please ensure that the subject | |
| doesn't start with an uppercase character. | |
| # Validate length of PR title | |
| headerPattern: '^(\w+)(?:\([\w$.\-*/ ]+\))?: (.+)$' | |
| headerPatternCorrespondence: type, subject | |
| # Provide helpful error messages | |
| validateSingleCommit: false | |
| ignoreLabels: | | |
| dependencies | |
| skip-changelog |