Ignore 'release' label when creating CHANGELOGs (#1373)

This commit is contained in:
David Peter 2025-10-16 20:13:39 +02:00 committed by GitHub
parent 3105e49b08
commit 6b384a14de
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -106,9 +106,16 @@ version-files = [
]
submodules = ["ruff"]
require-labels = [{ submodule = "ruff", labels = ["ty"] }]
ignore-labels = ["internal", "testing", "ci", "playground", "documentation"]
major-labels = [] # We do not use the major version number yet
minor-labels = [] # We do not use the minor version number yet
ignore-labels = [
"internal",
"testing",
"ci",
"playground",
"documentation",
"release",
]
major-labels = [] # We do not use the major version number yet
minor-labels = [] # We do not use the minor version number yet
version-format = "cargo"
default-bump-type = "pre"
trim-title-prefixes = ["[ty]"]