You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.1 KiB
68 lines
1.1 KiB
# config for changelog tool
|
|
# source: https://gitea.com/gitea/changelog
|
|
|
|
# The full repository name
|
|
repo: go-gitea/gitea
|
|
|
|
# Service type (gitea or github)
|
|
service: github
|
|
|
|
# Base URL for Gitea instance if using gitea service type (optional)
|
|
# Default: https://gitea.com
|
|
base-url:
|
|
|
|
# Changelog groups and which labeled PRs to add to each group
|
|
groups:
|
|
-
|
|
name: BREAKING
|
|
labels:
|
|
- kind/breaking
|
|
-
|
|
name: SECURITY
|
|
labels:
|
|
- kind/security
|
|
-
|
|
name: FEDERATION
|
|
labels:
|
|
- theme/federation
|
|
-
|
|
name: FEATURES
|
|
labels:
|
|
- kind/feature
|
|
-
|
|
name: API
|
|
labels:
|
|
- kind/api
|
|
-
|
|
name: ENHANCEMENTS
|
|
labels:
|
|
- kind/enhancement
|
|
- kind/refactor
|
|
- kind/ui
|
|
-
|
|
name: BUGFIXES
|
|
labels:
|
|
- kind/bug
|
|
-
|
|
name: TESTING
|
|
labels:
|
|
- kind/testing
|
|
-
|
|
name: TRANSLATION
|
|
labels:
|
|
- kind/translation
|
|
-
|
|
name: BUILD
|
|
labels:
|
|
- kind/build
|
|
- kind/lint
|
|
-
|
|
name: DOCS
|
|
labels:
|
|
- kind/docs
|
|
-
|
|
name: MISC
|
|
default: true
|
|
|
|
# regex indicating which labels to skip for the changelog
|
|
skip-labels: skip-changelog|backport\/.+
|
|
|