This repository was archived by the owner on May 31, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +87
-0
lines changed
Expand file tree Collapse file tree 2 files changed +87
-0
lines changed Original file line number Diff line number Diff line change 1+ {{ if .Versions -}}
2+ <a name =" unreleased " ></a >
3+ ## [ Unreleased]
4+
5+ {{ if .Unreleased.CommitGroups -}}
6+ {{ range .Unreleased.CommitGroups -}}
7+ ### {{ .Title }}
8+ {{ range .Commits -}}
9+ - {{ if .Scope }}** {{ .Scope }}:** {{ end }}{{ .Subject }}
10+ {{ end }}
11+ {{ end -}}
12+ {{ end -}}
13+ {{ end -}}
14+
15+ {{ range .Versions }}
16+ <a name =" {{ .Tag.Name }} " ></a >
17+ ## {{ if .Tag.Previous }}[ {{ .Tag.Name }}] {{ else }}{{ .Tag.Name }}{{ end }} - {{ datetime "2006-01-02" .Tag.Date }}
18+ {{ range .CommitGroups -}}
19+ ### {{ .Title }}
20+ {{ range .Commits -}}
21+ - {{ if .Scope }}** {{ .Scope }}:** {{ end }}{{ .Subject }}
22+ {{ end }}
23+ {{ end -}}
24+
25+ {{- if .RevertCommits -}}
26+ ### Reverts
27+ {{ range .RevertCommits -}}
28+ - {{ .Revert.Header }}
29+ {{ end }}
30+ {{ end -}}
31+
32+ {{- if .MergeCommits -}}
33+ ### Pull Requests
34+ {{ range .MergeCommits -}}
35+ - {{ .Header }}
36+ {{ end }}
37+ {{ end -}}
38+
39+ {{- if .NoteGroups -}}
40+ {{ range .NoteGroups -}}
41+ ### {{ .Title }}
42+ {{ range .Notes }}
43+ {{ .Body }}
44+ {{ end }}
45+ {{ end -}}
46+ {{ end -}}
47+ {{ end -}}
48+
49+ {{- if .Versions }}
50+ [ Unreleased] : {{ .Info.RepositoryURL }}/compare/{{ $latest := index .Versions 0 }}{{ $latest.Tag.Name }}...HEAD
51+ {{ range .Versions -}}
52+ {{ if .Tag.Previous -}}
53+ [ {{ .Tag.Name }}] : {{ $.Info.RepositoryURL }}/compare/{{ .Tag.Previous.Name }}...{{ .Tag.Name }}
54+ {{ end -}}
55+ {{ end -}}
56+ {{ end -}}
Original file line number Diff line number Diff line change 1+ style : github
2+ template : CHANGELOG.tpl.md
3+ info :
4+ title : CHANGELOG
5+ repository_url : https://github.com/syntro-opensource/silverstripe-elemental-bootstrap-alertsection
6+ options :
7+ commits :
8+ filters :
9+ Type :
10+ - add
11+ - fix
12+ - change
13+ - remove
14+ - deprecate
15+ - Bump
16+ commit_groups :
17+ title_maps :
18+ add : 🍰 Added
19+ fix : 🐞 Fixed
20+ change : 🔧 Changed
21+ deprecate : 💀 Deprecated
22+ remove : 🗑 Removed
23+ Bump : 🧬 Dependencies
24+ header :
25+ pattern : " ^(\\ w*)\\ :?\\ s(.*)$"
26+ pattern_maps :
27+ - Type
28+ - Subject
29+ notes :
30+ keywords :
31+ - BREAKING CHANGE
You can’t perform that action at this time.
0 commit comments