mirror of
https://scm.cms.hu-berlin.de/methodenlabor/templates/data-project-template.git
synced 2025-07-05 12:38:51 +02:00
initial
This commit is contained in:
39
.gitlab/changelog_config.yml
Normal file
39
.gitlab/changelog_config.yml
Normal file
@ -0,0 +1,39 @@
|
||||
---
|
||||
# Settings for generating changelogs using the GitLab API. See
|
||||
# https://docs.gitlab.com/ee/api/repositories.html#generate-changelog-data for
|
||||
# more information.
|
||||
categories:
|
||||
added: Added
|
||||
fixed: Fixed
|
||||
changed: Changed
|
||||
deprecated: Deprecated
|
||||
removed: Removed
|
||||
security: Security
|
||||
performance: Performance
|
||||
other: Other
|
||||
include_groups:
|
||||
- Methodenlabor
|
||||
template: |
|
||||
{% if categories %}
|
||||
{% each categories %}
|
||||
### {{ title }} ({% if single_change %}1 change{% else %}{{ count }} changes{% end %})
|
||||
|
||||
{% each entries %}
|
||||
- [{{ title }}]({{ commit.web_url }})\
|
||||
{% if author.credit %} by {{ author.reference }}{% end %}\
|
||||
{% if commit.trailers.MR %}\
|
||||
([merge request]({{ commit.trailers.MR }}))\
|
||||
{% else %}\
|
||||
{% if merge_request %}\
|
||||
([merge request]({{ merge_request.web_url }}))\
|
||||
{% end %}\
|
||||
{% end %}\
|
||||
|
||||
{% end %}
|
||||
|
||||
{% end %}
|
||||
{% else %}
|
||||
No changes.
|
||||
{% end %}
|
||||
# The tag format for gitlab-org/gitlab is vX.Y.Z(-rcX). Releases are always without trailing -...
|
||||
tag_regex: '^v(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)$'
|
Reference in New Issue
Block a user