feat!: Change default version patterns to follow Conventional Commits

This commit is contained in:
Paul Hatcherian 2025-07-19 07:50:19 +02:00
parent 305899e7da
commit bdf7908364
6 changed files with 38 additions and 36 deletions

View file

@ -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