changeloguru/internal/convention/types.go

16 lines
287 B
Go

package convention
const (
FixType = "fix"
FeatType = "feat"
BuildType = "build"
ChoreType = "chore"
CIType = "ci"
DocsType = "docs"
StyleType = "style"
RefactorType = "refactor"
PerfType = "perf"
TestType = "test"
MiscType = "misc"
)