From 58c449ec0e75e096a0a6af900ad9329b85a06504 Mon Sep 17 00:00:00 2001 From: austin ce Date: Wed, 13 Jan 2021 10:39:33 -0500 Subject: [PATCH] ci: backport changelog builder config fixes --- changelog-builder-config.json | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/changelog-builder-config.json b/changelog-builder-config.json index 6b84d530..3d4ac8ff 100644 --- a/changelog-builder-config.json +++ b/changelog-builder-config.json @@ -1,18 +1,25 @@ - - { "categories": [ { "title": "## 🚀 Features", "labels": ["kind/feature"] }, + { + "title": "## 📚 Docs", + "labels": ["kind/docs"] + }, { "title": "## 🐛 Bugs", "labels": ["kind/bug"] + }, + { + "title": "## 💻 CI", + "labels": ["kind/ci"] } ], "ignore_labels": [ "no-changelog" ], - "template": "${{CHANGELOG}}\n${{UNCATEGORIZED}}", + "pr_template": "- ${{TITLE}} (#${{NUMBER}}): @${{AUTHOR}}", + "template": "${{CHANGELOG}}\n## Other\n${{UNCATEGORIZED}}" }