@@ -61,6 +61,7 @@ class MeltanoCommitizen(BaseCommitizen):
6161 "⚙️ Under the Hood" ,
6262 "⚡ Performance Improvements" ,
6363 "📚 Documentation Improvements" ,
64+ "📦 Packaging changes" ,
6465 ]
6566 change_type_map = {
6667 "break" : "BREAKING CHANGES" ,
@@ -69,6 +70,7 @@ class MeltanoCommitizen(BaseCommitizen):
6970 "refactor" : "⚙️ Under the Hood" ,
7071 "docs" : "📚 Documentation Improvements" ,
7172 "perf" : "⚡ Performance Improvements" ,
73+ "packaging" : "📦 Packaging changes" ,
7274 }
7375
7476 def __init__ (self , * args , ** kwargs ):
@@ -106,6 +108,10 @@ def questions(self) -> Questions:
106108 {"value" : "test" , "name" : "test: A test change." },
107109 {"value" : "build" , "name" : "build: A build system change." },
108110 {"value" : "ci" , "name" : "ci: A change to CI/CD." },
111+ {
112+ "value" : "packaging" ,
113+ "name" : "packaging: A change to how the project is packaged or distributed." ,
114+ },
109115 ],
110116 "message" : "Select the type of change you are committing" ,
111117 },
0 commit comments