mirror of
https://github.com/feeddeck/feeddeck.git
synced 2026-03-12 01:54:51 -05:00
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.
30 lines
652 B
YAML
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:'
|