12345678910111213141516171819202122232425 |
- # Semantic Pull Requests configuration
- # See: https://github.com/zeke/semantic-pull-requests/blob/master/README.md
- # List valid scopes, one per component
- scopes:
- - scope1
- - scope2
- ###
- # Do not modify values below this line!
- ###
- # Always validate the PR title AND all commits
- titleAndCommits: true
- # A subset of types specified in commitizen/conventional-commit-types are used.
- # See: https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json
- types:
- - feat
- - fix
- - chore
- # Disallow use of Merge commits (eg on github: "Merge branch 'master' into feature/ride-unicorns")
- allowMergeCommits: false
- # Disallow use of Revert commits (eg on github: "Revert "feat: ride unicorns"")
- allowRevertCommits: false
|