mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 15:19:09 +01:00
cab7b7f59c
Otherwise, it is not possible anymore to generate changelogs.
57 lines
976 B
YAML
57 lines
976 B
YAML
# 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:
|
|
- pr/breaking
|
|
-
|
|
name: SECURITY
|
|
labels:
|
|
- topic/security
|
|
-
|
|
name: FEATURES
|
|
labels:
|
|
- type/feature
|
|
-
|
|
name: API
|
|
labels:
|
|
- modifies/api
|
|
-
|
|
name: ENHANCEMENTS
|
|
labels:
|
|
- type/enhancement
|
|
- type/refactoring
|
|
- topic/ui
|
|
-
|
|
name: BUGFIXES
|
|
labels:
|
|
- type/bug
|
|
-
|
|
name: TESTING
|
|
labels:
|
|
- type/testing
|
|
-
|
|
name: BUILD
|
|
labels:
|
|
- topic/build
|
|
- topic/code-linting
|
|
-
|
|
name: DOCS
|
|
labels:
|
|
- type/docs
|
|
-
|
|
name: MISC
|
|
default: true
|
|
|
|
# regex indicating which labels to skip for the changelog
|
|
skip-labels: skip-changelog|backport\/.+
|