Skip to content
This repository has been archived by the owner on May 31, 2024. It is now read-only.

Commit

Permalink
created release drafter config
Browse files Browse the repository at this point in the history
  • Loading branch information
kurmann committed Apr 25, 2024
1 parent bf52217 commit ce22b33
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions templates/entities-repo/.github/release-drafter-config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Konfigurationsdatei für das Release-Drafter-Tool.
# release-drafter-config.yml

# Definiert die Vorlage für den Namen des Releases.
name-template: 'v$RESOLVED_VERSION' # Automatisch erhöhte Versionsnummer

# Definiert die Vorlage für den Namen des Release-Tags.
tag-template: 'v$RESOLVED_VERSION' # Automatisch erhöhte Versionsnummer

# Kategorien für das Changelog, identifiziert durch Labels auf Pull Requests.
categories:
- title: 'Features'
labels:
- 'enhancement'
- title: 'Bug Fixes'
labels:
- 'bug'
- title: 'Dokumentation'
labels:
- 'documentation'

# Layout des Changelogs, formatiert nach den Änderungen in den Pull Requests.
template: |
## Änderungen
$CHANGES
# Version-Resolver bestimmt die Art der Versionserhöhung basierend auf den PR Labels.
version-resolver:
major:
labels:
- 'breaking'
minor:
labels:
- 'enhancement'
patch:
labels:
- 'bug'
- 'documentation'
default: minor

0 comments on commit ce22b33

Please sign in to comment.