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
Copy file name to clipboardExpand all lines: README.md
+7-4
Original file line number
Diff line number
Diff line change
@@ -81,15 +81,18 @@ jobs:
81
81
| `commitizen_version` | Specify the version to be used by commitizen. Eg: `2.21. | latest |
82
82
| `changelog` | Create changelog when bumping the version | true |
83
83
| `no_raise` | Don't raise the given comma-delimited exit codes (e.g., no_raise: '20,21'). Use with caution! Open an issue in [commitizen](https://github.com/commitizen-tools/commitizen/issues) if you need help thinking about your workflow. | [21](https://commitizen-tools.github.io/commitizen/exit_codes/) |
| `check_consistency` | Check consistency among versions defined in commitizen configuration and version_files | `false` |
86
+
| `gpg_sign` | If true, use GPG to sign commits and tags (for git operations). Requires separate setup of GPG key and passphrase in GitHub Actions (e.g. with the action `crazy-max/ghaction-import-gpg`) | `false` |
87
+
| `debug` | Prints debug output to GitHub Actions stdout | `false` |
85
88
86
89
## Outputs
87
90
88
91
| Name | Description |
89
-
|-----------|-----------------|
92
+
|--------- | ---------------|
90
93
| `version` | The new version |
91
94
92
-
Additionally, the new version is also available as an environment variable under `REVISION`.
95
+
The new version is also available as an environment variable under `REVISION` or you can access using `${{ steps.cz.outputs.version }}`
0 commit comments