fix: merge push to quay.io into release please #231
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Expected commit message structure
Commit messages (in particular the merge commit of a pull request) should be structured as follows:
The commit contains the following structural elements, to communicate intent to the consumers of your library:
fix:
a commit of the typefix
patches a bug in your codebase (this correlates withPATCH
in semantic versioning).feat:
a commit of the typefeat
introduces a new feature to the codebase (this correlates withMINOR
in semantic versioning).BREAKING CHANGE:
a commit that has the textBREAKING CHANGE
: at the beginning of its optional body or footer section introduces a breaking API change (correlating withMAJOR
in semantic versioning). A breaking change can be part of commits of any type. e.g., afix:
,feat:
&chore:
types would all be valid, in addition to any other type.Others: commit types other than
fix:
and feat: are allowed, for examplechore:
docs:
style:
refactor:
perf:
test:
and others. We also recommend improvement for commits that improve a current implementation without adding a new feature or fixing a bug. Notice these types are not mandated by the conventional commits specification, and have no implicit effect in semantic versioning (unless they include a
BREAKING CHANGE
, which is NOT recommended). A scope may be provided to a commit’s type, to provide additional contextual information and is contained within parenthesis, e.g.,feat(parser): add ability to parse arrays
.Examples
Commit message with description and breaking change in body
Commit message with no body
Commit message with scope
Commit message for a fix using an (optional) issue number.