From 382aac8d51fdfcb4ab44573ae0d0c6cada30cbf1 Mon Sep 17 00:00:00 2001 From: WorldTeacher Date: Sat, 1 Nov 2025 22:19:47 +0100 Subject: [PATCH 1/2] 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 -- 2.49.1 From c07d0ee91936e5a6884e54b9d7c8a2ca48e704d2 Mon Sep 17 00:00:00 2001 From: WorldTeacher Date: Sat, 1 Nov 2025 22:50:03 +0100 Subject: [PATCH 2/2] maintenance: update gitea url --- .gitea/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index a79ec2e..470c533 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -51,7 +51,7 @@ jobs: uses: https://github.com/mikepenz/release-changelog-builder-action@v5 with: platform: "gitea" - baseURL: "http://gitea:3000" + baseURL: "http://192.168.178.110:3000" configuration: ".gitea/changelog-config.json" env: GITHUB_TOKEN: ${{ secrets.GITEA_TOKEN }} -- 2.49.1