28 lines
1.2 KiB
YAML
28 lines
1.2 KiB
YAML
# The directory that stores individual changelog entries.
|
|
# Each entry is stored in a dedicated yaml file.
|
|
# - 'make chlog-new' will copy the 'template_yaml' to this directory as a new entry file.
|
|
# - 'make chlog-validate' will validate that all entry files are valid.
|
|
# - 'make chlog-update' will read and delete all entry files in this directory, and update 'changelog_md'.
|
|
|
|
# Specify as relative path from root of repo.
|
|
# (Optional) Default: .chloggen
|
|
entries_dir: .chloggen
|
|
|
|
# This file is used as the input for individual changelog entries.
|
|
# Specify as relative path from root of repo.
|
|
# (Optional) Default: .chloggen/TEMPLATE.yaml
|
|
template_yaml: .chloggen/TEMPLATE.yaml
|
|
|
|
# The CHANGELOG file or files to which 'chloggen update' will write new entries
|
|
# (Optional) Default filename: CHANGELOG.md
|
|
change_logs:
|
|
user: CHANGELOG.md
|
|
|
|
# The default change_log or change_logs to which an entry should be added.
|
|
# If 'change_logs' is specified in this file, and no value is specified for 'default_change_logs',
|
|
# then 'change_logs' MUST be specified in every entry file.
|
|
default_change_logs: [user]
|
|
|
|
# Custom template for the changelog that include links for the issue/PRs
|
|
summary_template: .chloggen/CHANGELOG.tmpl
|