From 382aac8d51fdfcb4ab44573ae0d0c6cada30cbf1 Mon Sep 17 00:00:00 2001 From: WorldTeacher Date: Sat, 1 Nov 2025 22:19:47 +0100 Subject: [PATCH] feat: add changelog config --- .gitea/changelog-config.json | 103 +++++++++++++++++++++++++++++++++++ 1 file changed, 103 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..5a7d4e7 --- /dev/null +++ b/.gitea/changelog-config.json @@ -0,0 +1,103 @@ +{ + "categories": [ + { + "title": "## ๐Ÿš€ Features", + "labels": [ + "add", + "Add", + "Kind/Feature", + "feat", + "Feature", + "Feat" + ] + }, + { + "title": "## ๐Ÿงฐ Enhancements", + "labels": [ + "enhancement", + "Enhancement", + "Kind/Enhancement", + "improvement", + "Improvement", + "Kind/Improvement" + ] + }, + { + "title": "## ๐Ÿ› Fixes", + "labels": [ + "fix", + "Fix", + "Kind/Bug", + "Kind/Security" + ] + }, + { + "title": "## ๐Ÿงช Upgrade", + "labels": ["upgrade","Upgrade","Clean"] + } + , + { + "title": "## ๐Ÿ“ Documentation", + "labels": ["docs","Docs", "Kind/Documentation"] + }, + { + "title": "## ๐Ÿ› ๏ธ Maintenance", + "labels": [ + "maintenance", + "Maintenance", + "Kind/Maintenance", + "chore", + "Chore", + "Kind/Chore" + ] + }, + { + "title": "## โช Reverts", + "labels": [ + "revert", + "Revert", + "Kind/Revert", + "Kind/Reverts", + "reverts", + "Reverts" + ] + }, + { + "title": "## ๐Ÿ—‘๏ธ Deprecation", + "labels": ["deprecation","Deprecation", "Kind/Deprecation"] + }, + { + "title": "## โšก๏ธ Performance Improvements", + "labels": [ + "perf", + "Perf", + "Kind/Performance" + ] + }, + { + "title": "## ๐ŸŽจ Styling", + "labels": [ + "style", + "Style", + "Kind/Style" + ] + }, + { + "title": "## ๐ŸŽฏ Other Changes", + "labels": [] + } + ], + "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