You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: 'Create a commit bumping the version of your project and creating a changelog file'
1
+
name: "Bump and changelog using commitizen"
2
+
description: "Create a commit bumping the version of your project and creating a changelog file"
3
3
runs:
4
-
using: 'docker'
5
-
image: 'Dockerfile'
4
+
using: "docker"
5
+
image: "Dockerfile"
6
6
branding:
7
-
icon: 'git-commit'
8
-
color: 'purple'
7
+
icon: "git-commit"
8
+
color: "purple"
9
9
outputs:
10
10
version:
11
-
description: 'New version'
11
+
description: "New version"
12
12
inputs:
13
13
working_directory:
14
-
description: 'Change to this directory before running'
14
+
description: "Change to this directory before running"
15
15
required: false
16
16
dry_run:
17
-
description: 'Run without creating commit, output to stdout'
17
+
description: "Run without creating commit, output to stdout"
18
18
required: false
19
19
commit:
20
-
description: 'If true a commit is created containing the bump changes'
20
+
description: "If true a commit is created containing the bump changes"
21
21
required: false
22
22
default: "true"
23
23
push:
24
-
description: 'If true the bump commit is pushed to the remote repository'
24
+
description: "If true the bump commit is pushed to the remote repository"
25
25
required: false
26
26
default: "true"
27
27
merge:
@@ -31,62 +31,62 @@ inputs:
31
31
required: false
32
32
default: "false"
33
33
prerelease:
34
-
description: 'Set as prerelease version'
34
+
description: "Set as prerelease version"
35
35
required: false
36
36
devrelease:
37
-
description: 'Non-negative integer for dev. release'
37
+
description: "Non-negative integer for dev. release"
38
38
required: false
39
39
local_version:
40
-
description: 'Bump only the local version portion'
40
+
description: "Bump only the local version portion"
41
41
required: false
42
42
default: "false"
43
43
changelog:
44
-
description: 'Create changelog when bumping the version'
44
+
description: "Create changelog when bumping the version"
45
45
default: "true"
46
46
required: false
47
47
github_token:
48
48
description: 'Token for the repo. Can be passed in using $\{{ secrets.GITHUB_TOKEN }}'
49
49
required: false
50
50
repository:
51
-
description: 'Repository name to push. Default or empty value represents current github repository (${GITHUB_REPOSITORY})'
52
-
default: ''
51
+
description: "Repository name to push. Default or empty value represents current github repository (${GITHUB_REPOSITORY})"
52
+
default: ""
53
53
required: false
54
54
branch:
55
-
description: 'Destination branch to push changes'
55
+
description: "Destination branch to push changes"
56
56
required: false
57
-
default: ''
57
+
default: ""
58
58
extra_requirements:
59
-
description: 'Extra commitizen dependencies like your custom plugins or rules'
59
+
description: "Extra commitizen dependencies like your custom plugins or rules"
60
60
required: false
61
-
default: ''
61
+
default: ""
62
62
changelog_increment_filename:
63
-
description: 'Filename to store the incremented generated changelog. This is different to changelog as it only contains the changes for the just generated version'
63
+
description: "Filename to store the incremented generated changelog. This is different to changelog as it only contains the changes for the just generated version"
64
64
required: false
65
65
git_redirect_stderr:
66
-
description: 'Redirect git output to stderr. Useful if you do not want git output in your changelog'
66
+
description: "Redirect git output to stderr. Useful if you do not want git output in your changelog"
67
67
required: false
68
68
default: "false"
69
69
git_name:
70
-
description: 'Name used to configure git (for git operations)'
70
+
description: "Name used to configure git (for git operations)"
71
71
required: false
72
-
default: 'github-actions[bot]'
72
+
default: "github-actions[bot]"
73
73
git_email:
74
-
description: 'Email address used to configure git (for git operations)'
74
+
description: "Email address used to configure git (for git operations)"
0 commit comments