mirror of
https://github.com/conventional-commits/conventionalcommits.org.git
synced 2026-03-23 06:01:43 -05:00
How about non issue commit? #9
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @unional on GitHub (Jul 21, 2017).
e.g commits for version bump, update dependencies, update readme etc?
Should they also consider as
fix?@stevemao commented on GitHub (Jul 21, 2017):
choredocsIts not mentioned here?
@unional commented on GitHub (Jul 21, 2017):
I see.
I have created a PR, IMO put it on the list make it easier to follow, as people would look for all types in the same section. 🌷
@jameswomack commented on GitHub (Aug 2, 2017):
Echoing @stevemao, Unleash creates a commit with the format
chore(release): <insert release name here> <insert semantic version here>for releases, e.g.chore(release): release 1.6.1.I've always used
chorewith a tag for those sorts of tasks because that's what the Angular team did, as well as the early conventional commit helper packages.@daKmoR commented on GitHub (Oct 2, 2017):
hmm a release is actually something big right?
so why is it not
RELEASE: 1.2.3?chore(release): 1.2.3seems pretty small in comparison?@stevemao commented on GitHub (Oct 2, 2017):
@daKmoR I don't think I understand your question?
chore(release): 1.2.3(or maybechore(release): publish v1.0.0? see https://github.com/lerna/lerna/blob/master/README.md#--message--m-msg) is a great message for release. However for monorepo, since there's no single version, I usechore(release): publish(https://github.com/conventional-changelog/conventional-changelog/blob/master/package.json)@zanona commented on GitHub (Nov 20, 2017):
Hey guys,
I have noticed that Angular convention no longer mentions about
chore, it seemsrefactorwould be the one being used in its place? and yet many places still usechore.I know this is all optional and depends on personal/team opinion, but do you guys know why has it been replaced/disappeared and what is the best way to still tag trivial updates, like text changes in websites, or something that would work as a
featneither afixand yetrefactoris not the right word.Thanks in advance.