GitOps dedicated "Conventional Commits" types #187
Replies: 3 comments
-
A well written commit message respecting the convetional commits standard will include these verbs in it's message, imho |
Beta Was this translation helpful? Give feedback.
-
I like the idea as a concept, but at the same time I have been using conventional commits for a while with GitOps without thinking too much about it. However, for the sake of discussion, this makes a lot of sense for both infrastructure- and configuration-as-code. I see that you have added an issue to the CC-repository, but I would personally change the scope of the request to IaC rather than just GitOps. |
Beta Was this translation helpful? Give feedback.
-
What would be the purpose of defining these commit types? And what is the scope - direct changes, or direct+dependencies? |
Beta Was this translation helpful? Give feedback.
-
I am wondering if there is a mapping between the "standard" conventional commit types and the GitOps operations, or if we need to add new types dedicated to GitOps.
In the 2nd case, here are the GitOps types I propose:
create:
a commit of the typecreate
create new resourcesupdate:
a commit of the typeupdate
update existing resourcesupgrade:
a commit of the typeupgrade
, a special update, upgrade existing resourcesdelete:
a commit of the typedelete
delete existing resourcesBeta Was this translation helpful? Give feedback.
All reactions