From 239304e67d98c5af74f72df1024b494619502c41 Mon Sep 17 00:00:00 2001 From: Joe Isaacs Date: Thu, 16 Apr 2026 14:09:17 -0400 Subject: [PATCH] skip: add a changelog deprecation label Signed-off-by: Joe Isaacs --- .github/release-drafter.yml | 3 +++ .github/workflows/labels.yml | 1 + 2 files changed, 4 insertions(+) diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index c28b97aba4c..1608fb15570 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -4,6 +4,9 @@ categories: - title: "⚠️ Breaks" labels: - "changelog/break" + - title: "🚧 Deprecation" + labels: + - "changelog/deprecation" - title: "✨ Features" labels: - "changelog/feature" diff --git a/.github/workflows/labels.yml b/.github/workflows/labels.yml index fb3fe1892bf..5c1489addb2 100644 --- a/.github/workflows/labels.yml +++ b/.github/workflows/labels.yml @@ -34,6 +34,7 @@ jobs: run: | REQUIRED_LABELS=( "changelog/break" + "changelog/deprecation" "changelog/feature" "changelog/performance" "changelog/fix"