hassio-nextcloud-backup/.github/changlog_template.hbs

68 lines
2.8 KiB
Handlebars
Raw Normal View History

{{#each releases}}
2021-01-08 10:47:01 +01:00
{{#if @first}}
2024-09-11 14:56:16 +02:00
{{#if href}}
## [{{title}}]({{href}}){{#if tag}} - {{isoDate}}{{/if}}
{{else}}
## {{title}}{{#if tag}} - {{isoDate}}{{/if}}
{{/if}}
{{#commit-list commits heading='## 💥 Breaking changes' message=':boom:'}}
2021-03-23 16:48:47 +01:00
- {{subject}} [`{{shorthash}}`]({{href}}) {{setVar "fix" "true"}}
2021-01-08 10:47:01 +01:00
{{/commit-list}}
2021-03-23 16:48:47 +01:00
{{#unless @root.fix }}
2024-09-11 14:56:16 +02:00
{{#commit-list merges heading='## 💥 Breaking changes' message=':boom:'}}
2021-03-23 16:48:47 +01:00
- {{message}} [`{{id}}`]({{href}}) `{{author}}`
{{/commit-list}}
{{/unless}}
{{#if @root.fix }}
2024-09-11 14:56:16 +02:00
{{#commit-list merges heading='' message=':boom:'}}
2021-03-23 16:48:47 +01:00
- {{message}} [`{{id}}`]({{href}}) `{{author}}`
{{/commit-list}}
{{/if}}
2024-09-11 14:56:16 +02:00
{{#commit-list commits heading='## 🚑 Fixs' message=':ambulance:'}}
- {{subject}} [`{{shorthash}}`]({{href}}) {{setVar "fix" "true"}}
2021-01-08 10:47:01 +01:00
{{/commit-list}}
2024-09-11 14:56:16 +02:00
{{#unless @root.fix }}
{{#commit-list merges heading='## 🚑 Fixs' message=':ambulance:'}}
2021-03-23 16:48:47 +01:00
- {{message}} [`{{id}}`]({{href}}) `{{author}}`
{{/commit-list}}
{{/unless}}
2024-09-11 14:56:16 +02:00
{{#if @root.fix }}
{{#commit-list merges heading='' message=':ambulance:'}}
2021-03-23 16:48:47 +01:00
- {{message}} [`{{id}}`]({{href}}) `{{author}}`
{{/commit-list}}
{{/if}}
2024-09-11 14:56:16 +02:00
{{#commit-list commits heading='## ✏️ Other changes' exclude=':boom:|:ambulance:|:heavy_plus_sign:'}}
- {{subject}} [`{{shorthash}}`]({{href}}) {{setVar "change" "true"}}
2021-01-08 10:47:01 +01:00
{{/commit-list}}
2024-09-11 14:56:16 +02:00
{{#unless @root.change }}
{{#commit-list merges heading='## ✏️ Other changes' exclude=':boom:|:ambulance:|:heavy_plus_sign:'}}
2021-03-23 16:48:47 +01:00
- {{message}} [`{{id}}`]({{href}}) `{{author}}`
{{/commit-list}}
{{/unless}}
2024-09-11 14:56:16 +02:00
{{#if @root.change }}
{{#commit-list merges heading='' exclude=':boom:|:ambulance:|:heavy_plus_sign:'}}
2021-03-23 16:48:47 +01:00
- {{message}} [`{{id}}`]({{href}}) `{{author}}`
{{/commit-list}}
{{/if}}
{{#commit-list commits heading='## ⬆️ Dependency updates' message=':arrow_up:'}}
- {{subject}} [`{{shorthash}}`]({{href}}) {{setVar "dep" "true"}}
{{/commit-list}}
2021-03-23 16:48:47 +01:00
{{#unless @root.dep }}
{{#commit-list merges heading='## ⬆️ Dependency updates' message=':arrow_up:'}}
- {{message}} [`{{id}}`]({{href}}) `{{author}}`
{{/commit-list}}
{{/unless}}
{{#if @root.dep }}
{{#commit-list merges heading='' message=':arrow_up:'}}
- {{message}} [`{{id}}`]({{href}}) `{{author}}`
{{/commit-list}}
{{/if}}
2021-01-08 10:47:01 +01:00
{{/if}}
{{/each}}