diff --git a/.github/workflows/build-push-dev-image.yml b/.github/workflows/build-push-dev-image.yml index 67e209a..25f5554 100644 --- a/.github/workflows/build-push-dev-image.yml +++ b/.github/workflows/build-push-dev-image.yml @@ -58,7 +58,7 @@ jobs: # A string which indicates the flags used by the `major_pattern` regular expression. Supported flags: idgs major_regexp_flags: "ig" # Same as above except indicating a minor change, supports regular expressions wrapped with '/' - minor_pattern: "/feat|feature|fix/" + minor_pattern: "/feat|feature/" # A string which indicates the flags used by the `minor_pattern` regular expression. Supported flags: idgs minor_regexp_flags: "ig" # A string to determine the format of the version output diff --git a/.github/workflows/build-push-release.yml b/.github/workflows/build-push-release.yml index 642d6f5..a2e33ae 100644 --- a/.github/workflows/build-push-release.yml +++ b/.github/workflows/build-push-release.yml @@ -49,11 +49,11 @@ jobs: tag_prefix: "v" # A string which, if present in a git commit, indicates that a change represents a # major (breaking) change, supports regular expressions wrapped with '/' - major_pattern: "/breaking|major|release/" + major_pattern: "/breaking|major/" # A string which indicates the flags used by the `major_pattern` regular expression. Supported flags: idgs major_regexp_flags: "ig" # Same as above except indicating a minor change, supports regular expressions wrapped with '/' - minor_pattern: "/feat|feature|fix/" + minor_pattern: "/feat|feature/" # A string which indicates the flags used by the `minor_pattern` regular expression. Supported flags: idgs minor_regexp_flags: "ig" # A string to determine the format of the version output