forked from phips28/gh-action-bump-version
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
44 lines (44 loc) · 1.2 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Automated Version Bump
description: Automated version bump for npm packages.
runs:
using: docker
image: Dockerfile
branding:
icon: chevron-up
color: blue
inputs:
tag-prefix:
description: 'Prefix that is used for the git tag'
default: ''
required: false
minor-wording:
description: 'Words list that trigger a minor version bump'
default: 'feat,minor'
required: false
major-wording:
description: 'Words list that trigger a major version bump'
default: 'BREAKING CHANGE,major'
patch-wording:
description: 'Words list that trigger a patch version bump'
rc-wording:
description: 'Words list that trigger a patch version bump'
default: 'pre-alpha,pre-beta,pre-rc'
skip-tag:
description: 'Avoid to add a TAG to the version update commit'
default: 'false'
required: false
PACKAGEJSON_DIR:
description: 'Custom dir to the package'
default: ''
required: false
target-branch:
description: 'A separate branch to perform the version bump on'
default: ''
required: false
default:
description: 'Set a default version bump to use'
default: 'patch'
required: false
outputs:
newTag:
description: 'The newly created tag'