semantic.yml 734 B

12345678910111213141516171819202122232425
  1. # Semantic Pull Requests configuration
  2. # See: https://github.com/zeke/semantic-pull-requests/blob/master/README.md
  3. # List valid scopes, one per component
  4. scopes:
  5. - scope1
  6. - scope2
  7. ###
  8. # Do not modify values below this line!
  9. ###
  10. # Always validate the PR title AND all commits
  11. titleAndCommits: true
  12. # A subset of types specified in commitizen/conventional-commit-types are used.
  13. # See: https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json
  14. types:
  15. - feat
  16. - fix
  17. - chore
  18. # Disallow use of Merge commits (eg on github: "Merge branch 'master' into feature/ride-unicorns")
  19. allowMergeCommits: false
  20. # Disallow use of Revert commits (eg on github: "Revert "feat: ride unicorns"")
  21. allowRevertCommits: false