summaryrefslogtreecommitdiffstats
path: root/tools/conventional-changelog-tf-a/templates/commit-section.hbs
blob: 86b33351aceb4ae7960702d74e38f2a3e78af92f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{#if title ~}}
{{ header }}

{{#if commits.length ~}}
  {{#each commits ~}}
    {{#tf-a-mdlist 0}}{{> commit root=@root showScope=../topLevel }}{{/tf-a-mdlist ~}}
  {{/each}}

{{/if ~}}

{{#if sections.length ~}}
  {{#each sections ~}}
    {{#tf-a-mdlist 0}}{{> tf-a-commit-section root=@root header=(tf-a-concat "**" title "**") }}{{/tf-a-mdlist}}
  {{/each}}
{{/if ~}}

{{/if}}