Skip to content
Snippets Groups Projects
Commit ecdd4af7 authored by timoknapp's avatar timoknapp Committed by Christoph Witzko
Browse files

feat: add emojis to default commit types

parent 85ddde0e
Branches
Tags
No related merge requests found
......@@ -4,6 +4,7 @@ type ChangelogType struct {
Type string
Text string
Content string
Emoji string
}
type ChangelogTypes []ChangelogType
......@@ -32,49 +33,61 @@ var defaultTypes = ChangelogTypes{
{
Type: "%%bc%%",
Text: "Breaking Changes",
Emoji: "📣",
},
{
Type: "feat",
Text: "Feature",
Emoji: "🎁",
},
{
Type: "fix",
Text: "Bug Fixes",
Emoji: "🐞",
},
{
Type: "revert",
Text: "Reverts",
Emoji: "🔙",
},
{
Type: "perf",
Text: "Performance Improvements",
Emoji: "📈",
},
{
Type: "docs",
Text: "Documentation",
Emoji: "📄",
},
{
Type: "test",
Text: "Tests",
Emoji: "🔎",
},
{
Type: "refactor",
Text: "Code Refactoring",
Emoji: "🔀",
},
{
Type: "style",
Text: "Styles",
Emoji: "🎨",
},
{
Type: "chore",
Text: "Chores",
Emoji: "🚧",
},
{
Type: "build",
Text: "Build",
Emoji: "📦",
},
{
Type: "ci",
Text: "CI",
Emoji: "🔁",
},
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment