semantic.yml 746 B

123456789101112131415161718192021222324252627
  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. - boinc
  6. - ci
  7. - cli
  8. - docs
  9. ###
  10. # Do not modify values below this line!
  11. ###
  12. # Always validate the PR title AND all commits
  13. titleAndCommits: true
  14. # A subset of types specified in commitizen/conventional-commit-types are used.
  15. # See: https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json
  16. types:
  17. - feat
  18. - fix
  19. - chore
  20. # Disallow use of Merge commits (eg on github: "Merge branch 'master' into feature/ride-unicorns")
  21. allowMergeCommits: false
  22. # Disallow use of Revert commits (eg on github: "Revert "feat: ride unicorns"")
  23. allowRevertCommits: false