chore(deps): update ruff requirement from >=0.2.0 to >=0.15.10 #51
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: Conventional Commits | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize] | |
| permissions: | |
| pull-requests: read | |
| jobs: | |
| validate: | |
| name: Validate PR Title | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check PR title follows conventional commits | |
| uses: amannn/action-semantic-pull-request@v6 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| # Configure allowed types | |
| types: | | |
| feat | |
| fix | |
| docs | |
| chore | |
| test | |
| refactor | |
| style | |
| perf | |
| build | |
| ci | |
| revert | |
| # Require scope to be lowercase | |
| requireScope: false | |
| # Allow scopes (optional) | |
| scopes: | | |
| temporal | |
| api | |
| core | |
| frontend | |
| deps | |
| cli | |
| sdk | |
| notebook | |
| ee | |
| docs | |
| infra | |
| # Ensure the subject doesn't start with uppercase | |
| subjectPattern: ^(?![A-Z]).+$ | |
| subjectPatternError: | | |
| The subject "{subject}" should not start with an uppercase letter. | |
| Please use lowercase (e.g., "add feature" not "Add feature"). |