Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 1.29 KB

example-release-notes.template.md

File metadata and controls

27 lines (22 loc) · 1.29 KB

Release Notes <%= head %>

Release notes are created between releases <%= head %> and <%= base %>.

<%_ if(stories.filter(createStoryTypeFilter('feature')).length) { _%>

🚀 Features

<%_ stories.filter(createStoryTypeFilter('feature')).forEach((story) => { _%>

  • <%= story.name %> [<%= story.id %>] <% story.labels.filter(labelVersionFilter).forEach((label) => { %><%= label.name %> <% }); %> <% }); _%>

<%_ } %> <% if(stories.filter(createStoryTypeFilter('bug')).length) { _%>

🐛 Bugfixes

<%_ stories.filter(createStoryTypeFilter('bug')).forEach((story) => { _%>

  • <%= story.name %> [<%= story.id %>] <% story.labels.filter(labelVersionFilter).forEach((label) => { %><%= label.name %> <% }); %> <% }); _%>

<%_ } %> <% if(stories.filter(createStoryTypeFilter('chore')).length) { _%>

🧰 Maintenance

<%_ stories.filter(createStoryTypeFilter('chore')).forEach((story) => { _%>

  • <%= story.name %> [<%= story.id %>] <% story.labels.filter(labelVersionFilter).forEach((label) => { %><%= label.name %> <% }); %> <% }); _%>

<%_ } _%>