From cab7b717f70b3bad6386019b9589ad029b40316d Mon Sep 17 00:00:00 2001 From: WorldTeacher Date: Wed, 4 Jun 2025 16:50:55 +0200 Subject: [PATCH] add changelog template --- .gitea/changelog-config.json | 46 ++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .gitea/changelog-config.json diff --git a/.gitea/changelog-config.json b/.gitea/changelog-config.json new file mode 100644 index 0000000..acbf2d3 --- /dev/null +++ b/.gitea/changelog-config.json @@ -0,0 +1,46 @@ +{ + "categories": [ + { + "title": "## ๐Ÿš€ Features", + "labels": ["add","Add", "Kind/Feature"] + }, + { + "title": "## ๐Ÿ› Fixes", + "labels": ["fix","Fix", "Kind/Bug"] + }, + { + "title": "## ๐Ÿงช Upgrade", + "labels": ["upgrade","Upgrade","Clean"] + } + , + { + "title": "## ๐Ÿ“ Documentation", + "labels": ["docs","Docs", "Kind/Documentation"] + }, + { + "title": "## ๐Ÿงน Chore", + "labels": ["chore","Chore", "Kind/Chore"] + }, + { + "title": "## ๐Ÿ› ๏ธ Maintenance", + "labels": ["maintenance","Maintenance", "Kind/Maintenance"] + }, + { + "title": "## ๐Ÿ—‘๏ธ Deprecation", + "labels": ["deprecation","Deprecation", "Kind/Deprecation"] + } + ], + "label_extractor": [ + { + "pattern": "(\\w+) (.+)", + "target": "$1", + "on_property": "title" + } + ], + "sort": "ASC", + "template": "${{CHANGELOG}}", + "pr_template": "- ${{TITLE}}\n - PR: #${{NUMBER}}", + "empty_template": "- no changes", + "max_pull_requests": 1000, + "max_back_track_time_days": 1000 +} \ No newline at end of file -- 2.49.1