45 lines
1.3 KiB
YAML
45 lines
1.3 KiB
YAML
---
|
|
# 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:
|
|
- gitlab-org/gitlab-core-team/community-members
|
|
template: |
|
|
{% if categories %}
|
|
{% each categories %}
|
|
### {{ title }} ({% if single_change %}1 change{% else %}{{ count }} changes{% end %})
|
|
|
|
{% each entries %}
|
|
- [{{ title }}]({{ commit.reference }})\
|
|
{% if author.credit %} by {{ author.reference }}{% end %}\
|
|
{% if commit.trailers.MR %}\
|
|
([merge request]({{ commit.trailers.MR }}))\
|
|
{% else %}\
|
|
{% if merge_request %}\
|
|
([merge request]({{ merge_request.reference }}))\
|
|
{% end %}\
|
|
{% end %}\
|
|
{% if commit.trailers.EE %}\
|
|
**GitLab Enterprise Edition**\
|
|
{% end %}
|
|
|
|
{% end %}
|
|
|
|
{% end %}
|
|
{% else %}
|
|
No changes.
|
|
{% end %}
|
|
# The tag format for gitlab-org/gitlab is vX.Y.Z(-rcX)-ee. The -ee prefix would
|
|
# be treated as a pre-release identifier, which can result in the wrong tag
|
|
# being used as the starting point of a changelog commit range. The custom regex
|
|
# here is used to ensure we find the correct tag.
|
|
tag_regex: '^v(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)-ee$'
|