.goreleaser.yaml 685 B

1234567891011121314151617181920212223242526272829
  1. builds:
  2. - # If true, skip the build.
  3. # Useful for library projects.
  4. # Default is false
  5. skip: true
  6. changelog:
  7. use: github
  8. groups:
  9. - title: Features
  10. regexp: "^.*feat[(\\w)]*:+.*$"
  11. order: 0
  12. - title: "Bug fixes"
  13. regexp: "^.*fix[(\\w)]*:+.*$"
  14. order: 1
  15. - title: "Enhancements"
  16. regexp: "^.*chore[(\\w)]*:+.*$"
  17. order: 2
  18. - title: "Refactor"
  19. regexp: "^.*refactor[(\\w)]*:+.*$"
  20. order: 3
  21. - title: "Build process updates"
  22. regexp: ^.*?(build|ci)(\(.+\))??!?:.+$
  23. order: 4
  24. - title: "Documentation updates"
  25. regexp: ^.*?docs?(\(.+\))??!?:.+$
  26. order: 4
  27. - title: Others
  28. order: 999