diff --git a/config/gbc.conf b/config/gbc.conf index af8d307..639e424 100644 --- a/config/gbc.conf +++ b/config/gbc.conf @@ -11,7 +11,8 @@ emojis = { "style": ":sparkles:", "build": ":construction:", "ci": ":factory:", - "perf": ":chart_with_upwards_trend:" + "perf": ":chart_with_upwards_trend:", + "first_commit": ":1st_place_medal:" } # If you want to commit messages with emojis, change to 'true'. diff --git a/config/settings.go b/config/settings.go index 79b8fde..319c781 100644 --- a/config/settings.go +++ b/config/settings.go @@ -15,16 +15,17 @@ import ( ) type Emoji struct { - Feat string `json:"feat"` - Fix string `json:"fix"` - Chore string `json:"chore"` - Refactor string `json:"refactor"` - Test string `json:"test"` - Docs string `json:"docs"` - Style string `json:"style"` - Build string `json:"build"` - Ci string `json:"ci"` - Perf string `json:"perf"` + Feat string `json:"feat"` + Fix string `json:"fix"` + Chore string `json:"chore"` + Refactor string `json:"refactor"` + Test string `json:"test"` + Docs string `json:"docs"` + Style string `json:"style"` + Build string `json:"build"` + Ci string `json:"ci"` + Perf string `json:"perf"` + FirstCommit string `json:"first_commit"` } func GetEmojis(fileName string, debug bool) Emoji { @@ -100,16 +101,17 @@ func GetEmojis(fileName string, debug bool) Emoji { } return Emoji{ - Feat: ":rocket:", - Fix: ":bug:", - Chore: ":white_check_mark:", - Refactor: ":hammer:", - Test: ":memo:", - Docs: ":books:", - Style: ":sparkles:", - Build: ":construction:", - Ci: ":factory:", - Perf: ":chart_with_upwards_trend:", + Feat: ":rocket:", + Fix: ":bug:", + Chore: ":white_check_mark:", + Refactor: ":hammer:", + Test: ":memo:", + Docs: ":books:", + Style: ":sparkles:", + Build: ":construction:", + Ci: ":factory:", + Perf: ":chart_with_upwards_trend:", + FirstCommit: ":1st_place_medal:", } }