-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathchangelog.hbs
More file actions
33 lines (28 loc) · 863 Bytes
/
changelog.hbs
File metadata and controls
33 lines (28 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{{#each releases}}
# {{title}}
[{{isoDate}}]
{{#commit-list
merges
heading='### Features'
message='feat(?:(\(\w+\))|):'}}
* \[[{{id}}]({{href}})] {{commit.subject}} by {{commit.author}}
{{/commit-list}}
{{#commit-list
merges
heading='### Fixes'
message='(bug(?:(\(\w+\))|):)|(fix(?:(\(\w+\))|):)'}}
* \[[{{id}}]({{href}})] {{commit.subject}} by {{commit.author}}
{{/commit-list}}
{{#commit-list
merges
heading='### Chores'
message='(chore(?:(\(\w+\))|):)|(build(?:(\(\w+\))|):)|(npm(?:(\(\w+\))|):)'}}
* \[[{{id}}]({{href}})] {{commit.subject}} by {{commit.author}}
{{/commit-list}}
{{#commit-list
merges
heading='### Other'
exclude='(feat(?:(\(\w+\))|):)|(chore(?:(\(\w+\))|):)|(build(?:(\(\w+\))|):)|(npm(?:(\(\w+\))|):)|(fix(?:(\(\w+\))|):)|(bug(?:(\(\w+\))|):)'}}
* \[[{{id}}]({{href}})] {{commit.subject}} by {{commit.author}}
{{/commit-list}}
{{/each}}