Files
feeddeck/.github/release.yaml
Rico Berger d95f350a7e [core] Add Continuous Delivery and Release Workflow (#3)
Add a continuous delivery and release workflow. The continuous delivery
workflow is used to build the Docker image for FeedDeck and the release
workflow is used to generate the changelog.
2023-09-05 23:19:59 +02:00

30 lines
652 B
YAML

name-template: "$RESOLVED_VERSION"
tag-template: "$RESOLVED_VERSION"
version-template: "v$MAJOR.$MINOR.$PATCH"
categories:
- title: "Added"
labels:
- "changelog: added"
- title: "Fixed"
labels:
- "changelog: fixed"
- title: "Changed"
labels:
- "changelog: changed"
version-resolver:
minor:
labels:
- "changelog: added"
- "changelog: changed"
patch:
labels:
- "changelog: fixed"
default: patch
category-template: "### $TITLE"
change-template: '- #$NUMBER: $TITLE @$AUTHOR'
template: |
$CHANGES
replacers:
- search: ':warning:'
replace: ':warning: _Breaking change:_ :warning:'