Bump ws from 7.5.5 to 7.5.10 (#216)
Bumps ws from 7.5.5 to 7.5.10.
updated-dependencies:
- dependency-name: ws dependency-type: indirect …
Signed-off-by: dependabot[bot] support@github.com Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
GitHub Tag Action
A GitHub Action to automatically bump and tag master, on merge, with the latest SemVer formatted version. Works on any platform.
Usage
📥 Inputs
${{ secrets.GITHUB_TOKEN }}
.Fetch all tags
false
).Filter branches
master
or.*
orrelease.*,hotfix.*,master
… (default:master,main
).Customize the tag
patch
). You can also setfalse
to avoid generating a new tag when none is explicitly provided. Can bepatch, minor or major
.prerelease
). You can also setfalse
to avoid generating a new tag when none is explicitly provided. Can beprerelease, prepatch, preminor or premajor
.false
).v
).<branch>
).Customize the conventional commit messages & titles of changelog sections
custom_release_rules (optional) - Comma separated list of release rules.
Format:
<keyword>:<release_type>:<changelog_section>
where<changelog_section>
is optional and will default to Angular’s conventions.Examples:
hotfix:patch,pre-feat:preminor
,bug:patch:Bug Fixes,chore:patch:Chores
Debugging
📤 Outputs
undefined
.undefined
.v0.0.0
if none). Note that ifcustom_tag
is set, this will beundefined
.0.0.0
if none) without the prefix. Note that ifcustom_tag
is set, this will beundefined
.major
,minor
,patch
orcustom
- can be prefixed withpre
).Bumping
The action will parse the new commits since the last tag using the semantic-release conventions.
semantic-release uses the commit messages to determine the type of changes in the codebase. Following formalized conventions for commit messages, semantic-release automatically determines the next semantic version number.
By default semantic-release uses Angular Commit Message Conventions.
Here is an example of the release type that will be done based on a commit messages:
If no commit message contains any information, then default_bump will be used.
Credits
anothrNick/github-tag-action - a similar action using a Dockerfile (hence not working on macOS)