forked from commitizen-tools/commitizen-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
48 lines (48 loc) · 1.62 KB
/
action.yml
File metadata and controls
48 lines (48 loc) · 1.62 KB
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
45
46
47
48
name: 'Bump and changelog using commitizen'
description: 'Create a commit bumping the version of your project and creating a changelog file'
runs:
using: 'docker'
image: 'Dockerfile'
branding:
icon: 'git-commit'
color: 'purple'
outputs:
version:
description: 'New version'
inputs:
dry_run:
description: 'Run without creating commit, output to stdout'
required: false
prerelease:
description: 'Set as prerelease version'
required: false
changelog:
description: 'Create changelog when bumping the version'
default: "true"
required: false
github_token:
description: 'Token for the repo. Can be passed in using $\{{ secrets.GITHUB_TOKEN }}'
required: true
repository:
description: 'Repository name to push. Default or empty value represents current github repository (${GITHUB_REPOSITORY})'
default: ''
required: false
branch:
description: 'Destination branch to push changes'
required: false
default: 'master'
extra_requirements:
description: 'Extra commitizen dependencies like your custom plugins or rules'
required: false
default: ''
changelog_increment_filename:
description: 'Filename to store the incremented generated changelog. This is different to changelog as it only contains the changes for the just generated version'
required: false
git_name:
description: 'Name used to configure git (for git operations)'
required: false
default: 'github-actions[bot]'
git_email:
description: 'Email address used to configure git (for git operations)'
required: false
default: 'github-actions[bot]@users.noreply.github.com'