-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
22 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,14 +34,30 @@ jobs: | |
uses: PaulHatch/[email protected] | ||
id: tag_version_develop | ||
with: | ||
# The prefix to use to identify tags | ||
tag_prefix: "v" | ||
major_pattern: "BREAKING CHANGE" | ||
minor_pattern: "feat:" | ||
version_format: "${major}.${minor}.${patch}" | ||
namespace: develop | ||
change_path: "." | ||
short_tags: false | ||
# 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: "(MAJOR)" | ||
# A string which indicates the flags used by the `major_pattern` regular expression. Supported flags: idgs | ||
major_regexp_flags: "" | ||
# Same as above except indicating a minor change, supports regular expressions wrapped with '/' | ||
minor_pattern: "(MINOR)" | ||
# A string which indicates the flags used by the `minor_pattern` regular expression. Supported flags: idgs | ||
minor_regexp_flags: "" | ||
# A string to determine the format of the version output | ||
version_format: "${major}.${minor}.${patch}-prerelease${increment}" | ||
# Named version, will be used as suffix for name version tag | ||
namespace: qrservice | ||
# If this is set to true, *every* commit will be treated as a new version. | ||
bump_each_commit: true | ||
# If true, the body of commits will also be searched for major/minor patterns to determine the version type. | ||
search_commit_body: false | ||
# The output method used to generate list of users, 'csv' or 'json'. | ||
user_format_type: "csv" | ||
# Prevents pre-v1.0.0 version from automatically incrementing the major version. | ||
# If enabled, when the major version is 0, major releases will be treated as minor and minor as patch. Note that the version_type output is unchanged. | ||
enable_prerelease_mode: true | ||
|
||
- name: output | ||
run: | | ||
|