mirror of
https://github.com/PaulHatch/semantic-version.git
synced 2026-04-18 12:59:51 +00:00
feat!: Change default version patterns to follow Conventional Commits
This commit is contained in:
parent
305899e7da
commit
bdf7908364
6 changed files with 38 additions and 36 deletions
|
|
@ -23,7 +23,7 @@ inputs:
|
|||
major_pattern:
|
||||
description: "A string which, if present in a git commit, indicates that a change represents a major (breaking) change. Wrap with '/' to match using a regular expression."
|
||||
required: true
|
||||
default: "(MAJOR)"
|
||||
default: "/!:|BREAKING CHANGE:/"
|
||||
major_regexp_flags:
|
||||
description: "A string which indicates the flags used by the `major_pattern` regular expression. Supported flags: idgs"
|
||||
required: false
|
||||
|
|
@ -31,7 +31,7 @@ inputs:
|
|||
minor_pattern:
|
||||
description: "A string which, if present in a git commit, indicates that a change represents a minor (feature) change. Wrap with '/' to match using a regular expression."
|
||||
required: true
|
||||
default: "(MINOR)"
|
||||
default: "/feat:/"
|
||||
minor_regexp_flags:
|
||||
description: "A string which indicates the flags used by the `minor_pattern` regular expression. Supported flags: idgs"
|
||||
required: false
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue