feat: working bitbar output

This commit is contained in:
2018-12-06 14:12:07 -07:00
commit 9a96270df6
11 changed files with 2928 additions and 0 deletions

23
.changelog_template.hbs Normal file
View File

@@ -0,0 +1,23 @@
### Changelog
{{#each releases}}
{{#if href}}
{{#if major}}
### [{{title}}]({{href}}) ({{niceDate}})
{{else}}
#### [{{title}}]({{href}}) ({{niceDate}})
{{/if}}
{{else}}
#### {{title}} ({{niceDate}})
{{/if}}
{{#each merges}}
- {{message}}{{#if href}} [`#{{id}}`]({{href}}){{/if}}
{{/each}}
{{#each fixes}}
- {{commit.subject}}{{#each fixes}}{{#if href}} [`#{{id}}`]({{href}}){{/if}}{{/each}}
{{/each}}
{{#each commits}}
- {{#matches message "BREAKING CHANGE"}}**Breaking:** {{/matches}}{{subject}}{{#if href}} [`{{shorthash}}`]({{href}}){{/if}}
{{/each}}
{{/each}}