123456789101112131415161718192021222324252627 |
- # Semantic Pull Requests configuration
- # See: https://github.com/zeke/semantic-pull-requests/blob/master/README.md
- # List valid scopes, one per component
- scopes:
- - boinc
- - ci
- - cli
- - docs
- ###
- # 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
|