chore(deps): bump the js-patches group across 1 directory with 12 updates #330
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 title | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize, reopened] | |
| permissions: | |
| pull-requests: write | |
| jobs: | |
| conventional-commits: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: amannn/action-semantic-pull-request@v6 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| # Mirrors the type list documented in CONTRIBUTING.md. | |
| types: | | |
| feat | |
| fix | |
| refactor | |
| chore | |
| docs | |
| test | |
| style | |
| perf | |
| ci | |
| # Subject must be lowercase and not end with a period. | |
| subjectPattern: ^(?![A-Z])(?!.*\.$).+$ | |
| subjectPatternError: | | |
| The subject of a Conventional Commit title should start with | |
| a lowercase letter and not end with a period. Example: | |
| `feat(http): cancel mid-body via tokio::select!` |