| 123456789101112131415161718192021222324252627282930313233343536 |
- title: '## Change Log'
- # style allow: simple, markdown(mkdown), ghr(gh-release)
- style: gh-release
- # group names
- names: [Refactor, Fixed, Feature, Update, Other]
- #repo_url: https://github.com/gookit/gcli
- filters:
- # message length should >= 12
- - name: msg_len
- min_len: 12
- # message words should >= 3
- - name: words_len
- min_len: 3
- - name: keyword
- keyword: format code
- exclude: true
- - name: keywords
- keywords: format code, action test
- exclude: true
- # group match rules
- # not matched will use 'Other' group.
- rules:
- - name: Refactor
- start_withs: [refactor, break]
- contains: ['refactor:', 'break:']
- - name: Fixed
- start_withs: [fix]
- contains: ['fix:']
- - name: Feature
- start_withs: [feat, new]
- contains: ['feat:', 'new:']
- - name: Update
- start_withs: [up]
- contains: ['update:', 'up:']
|