diff --git a/.github/workflows/tag_changelog_config.js b/.github/workflows/tag_changelog_config.js new file mode 100644 index 0000000..81d7ae5 --- /dev/null +++ b/.github/workflows/tag_changelog_config.js @@ -0,0 +1,15 @@ +module.exports = { + types: [ + { types: ["feat", "feature"], label: "๐ŸŽ‰ New Features" }, + { types: ["fix", "bugfix"], label: "๐Ÿ› Bugfixes" }, + { types: ["improvements", "enhancement"], label: "๐Ÿ”จ Improvements" }, + { types: ["perf"], label: "๐ŸŽ๏ธ Performance Improvements" }, + { types: ["build", "ci"], label: "๐Ÿ—๏ธ Build System" }, + { types: ["refactor"], label: "๐Ÿชš Refactors" }, + { types: ["doc", "docs"], label: "๐Ÿ“š Documentation Changes" }, + { types: ["test", "tests"], label: "๐Ÿ” Tests" }, + { types: ["style"], label: "๐Ÿ’… Code Style Changes" }, + { types: ["chore"], label: "๐Ÿงน Chores" }, + { types: ["other"], label: "Other Changes" }, + ], +};