Skip to content

Commit

Permalink
Feature: Update build-push-release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
joshua-seals authored Jul 13, 2023
1 parent f587c7f commit 022075d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-push-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,18 +43,18 @@ jobs:

# https://github.com/marketplace/actions/git-semantic-version
- name: Semver Check
uses: paulhatch/[email protected].2
uses: paulhatch/[email protected].3
id: version
with:
# The prefix to use to identify tags
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:|release:/"
# 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
Expand Down

0 comments on commit 022075d

Please sign in to comment.