From 68e32c103fc25c59344417a46285548dbba4c79c Mon Sep 17 00:00:00 2001 From: Micha Reiser Date: Sun, 4 May 2025 15:42:10 +0200 Subject: [PATCH] Ignore PRs labeled with `ty` for Ruff changelog (#17831) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index cf19e1306b..a58b912265 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -110,7 +110,7 @@ force-exclude = ''' major_labels = [] # Ruff never uses the major version number minor_labels = ["breaking"] # Bump the minor version on breaking changes -changelog_ignore_labels = ["internal", "ci", "red-knot", "testing"] +changelog_ignore_labels = ["internal", "ci", "testing", "ty"] changelog_sections.breaking = "Breaking changes" changelog_sections.preview = "Preview features"