From dd496c7bb452007de57f01a01c7672d8e2c1d3be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hu=C3=A1ng=20J=C3=B9nli=C3=A0ng?= Date: Tue, 8 Aug 2023 18:09:52 -0400 Subject: [PATCH] ignore "PR: Breaking Change" label when generating changelog (#15848) --- package.json | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 003b0ff6aa68..4a843e2bf134 100644 --- a/package.json +++ b/package.json @@ -113,8 +113,7 @@ "cacheDir": ".changelog", "labels": { "PR: Spec Compliance :eyeglasses:": ":eyeglasses: Spec Compliance", - "PR: Breaking Change :boom:": ":boom: Breaking Change", - "PR: Deprecation: :loudspeaker:": ":loudspeaker: Deprecation", + "PR: Deprecation :loudspeaker:": ":loudspeaker: Deprecation", "PR: New Feature :rocket:": ":rocket: New Feature", "PR: Bug Fix :bug:": ":bug: Bug Fix", "PR: Polish :nail_care:": ":nail_care: Polish", @@ -123,6 +122,19 @@ "PR: Performance :running_woman:": ":running_woman: Performance", "PR: Revert :leftwards_arrow_with_hook:": ":leftwards_arrow_with_hook: Revert", "PR: Output optimization :microscope:": ":microscope: Output optimization" + }, + "labels_breaking": { + "PR: Spec Compliance (next major) :eyeglasses:": ":eyeglasses: Spec Compliance", + "PR: Breaking Change :boom:": ":boom: Breaking Change", + "PR: Deprecation (next major) :loudspeaker:": ":loudspeaker: Deprecation", + "PR: New Feature (next major) :rocket:": ":rocket: New Feature", + "PR: Bug Fix (next major) :bug:": ":bug: Bug Fix", + "PR: Polish (next major) :nail_care:": ":nail_care: Polish", + "PR: Docs (next major) :memo:": ":memo: Documentation", + "PR: Internal (next major) :house:": ":house: Internal", + "PR: Performance (next major) :running_woman:": ":running_woman: Performance", + "PR: Revert (next major)": ":leftwards_arrow_with_hook: Revert", + "PR: Output optimization (next major) :microscope:": ":microscope: Output optimization" } } }