release-drafter.yml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # Filter previous releases to consider only those with the target matching commitish.
  2. filter-by-commitish: true
  3. categories:
  4. - title: 'BREAKING CHANGES'
  5. labels:
  6. - 'type/reaking'
  7. - title: '💎 Features'
  8. labels:
  9. - 'type/feature'
  10. - title: '🚀 Improvement'
  11. labels:
  12. - 'type/improvement'
  13. - title: '🐛 Bug Fixes'
  14. labels:
  15. - 'type/bug'
  16. - title: '🧰 Maintenance'
  17. labels:
  18. - 'type/support'
  19. - 'type/dependencies'
  20. category-template: '### $TITLE'
  21. change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
  22. autolabeler:
  23. - label: 'type/feature'
  24. branch:
  25. - '/^feat\/.+/'
  26. - label: 'type/improvement'
  27. branch:
  28. - '/^imprv\/.+/'
  29. - label: 'type/bug'
  30. branch:
  31. - '/^fix\/.+/'
  32. title:
  33. - '/^fix/i'
  34. - label: 'type/support'
  35. branch:
  36. - '/^support\/.+/'
  37. title:
  38. - '/^support/i'
  39. - '/^chore/i'
  40. - '/^ci/i'
  41. - '/^docs/i'
  42. - '/^test/i'
  43. include-labels:
  44. - type/breaking
  45. - type/feature
  46. - type/improvement
  47. - type/bug
  48. - type/support
  49. - type/dependencies
  50. exclude-labels:
  51. - 'flag/exclude-from-changelog'
  52. template: |
  53. $CHANGES