Skip to content

Commit

Permalink
Merge pull request #20 from na-ga/fix-typo
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
khanhtc1202 authored Nov 8, 2021
2 parents fb27ee6 + e9db982 commit 8b85017
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ tag: v0.1.0 # The tag number will be created. Required.
# # Config used while generating release note.
#
# releaseNoteGenerator:
# showAbbrevHash: boolean # Whether to include abbreviated hash value in release note. Default is false.
# showCommitter: boolean # Whether to include committer in release note. Default is true.
# useReleaseNoteBlock: boolean # Whether to use release note block instead of commit message. Default is false.
# showAbbrevHash: bool # Whether to include abbreviated hash value in release note. Default is false.
# showCommitter: bool # Whether to include committer in release note. Default is true.
# useReleaseNoteBlock: bool # Whether to use release note block instead of commit message. Default is false.
# commitExclude: # Additional excludes applied while generating release note.
# parentOfMergeCommit: bool # True is whether the commit is the parent commit of the matching merge commit. Default is false.
# prefixes: []string # Matches if commit's subject is prefixed by one of the given values. Default is emtpy.
Expand Down
2 changes: 1 addition & 1 deletion release.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ type ReleaseNoteGeneratorConfig struct {

type ReleaseCommitMatcherConfig struct {
ParentOfMergeCommit bool `json:"parentOfMergeCommit,omitempty"`
Prefixes []string `json:"prefixes,omitemtpy"`
Prefixes []string `json:"prefixes,omitempty"`
Contains []string `json:"contains,omitempty"`
}

Expand Down

0 comments on commit 8b85017

Please sign in to comment.