From 0e288ceb85ebdc39b0403f925b688f01a8619153 Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Wed, 6 Dec 2023 14:31:34 -0500 Subject: [PATCH] Add changelog config for release-plan to know how to interpret PRs --- package.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 4db4a11d..7369c8f4 100644 --- a/package.json +++ b/package.json @@ -40,7 +40,19 @@ "yarn": "1.22.18", "pnpm": "8.7.6" }, + "changelog": { + "__comment__": "Our release infrastructure relies on these exact labels. Be careful changing them.", + "labels": { + "breaking": ":boom: Breaking Change", + "enhancement": ":rocket: Enhancement", + "bug": ":bug: Bug Fix", + "documentation": ":memo: Documentation", + "internal": ":house: Internal", + "unlabeled": ":question: Unlabeled" + }, + "wildcardLabel": "unlabeled" + }, "publishConfig": { "registry": "https://registry.npmjs.org" } -} \ No newline at end of file +}