Newest 'commitizen' Questions
0 votes
0 answers
28 views
How to run script interactively on Mac
I am trying to get husky to launch commitizen in a pre-commit hook. Works fine on Linux. On Mac, not so much. #!/bin/bash exec < /dev/tty && cz commit || true It looks like polling is ...
0 votes
1 answer
540 views
commitizen - how to run commit check in gitlab ci
I'm using a commitizen and a pre-commit - repo: https://github.com/commitizen-tools/commitizen rev: v3.27.0 hooks: - id: commitizen name: commit message check On local everything is ...
standard-version not counting features correctly
I'm using conventional-changelog's standard-version to manage semantic versioning and generate my CHANGELOG.md in my application. I've already made my first release, which means my app's version is ...
0 votes
0 answers
601 views
Is it possible to make cz-customizable questions required?
I use the cz-customizable package to have conventional commits in the project; I use a customized configuration file named .cz-customize.js, and I've changed some defaults too. Is it possible to make ...
Configure commitizen to bump a default version
Can we configure commitizen command cz bump to bump to a default version (i.e. PATCH ) if there is no commit bump_pattern (i.e. ^(break|new|fix|hotfixi)) in the commit message? This is the part in ...
Github Action fails: 'git-lfs' is not on your path
I am using the following Github action: name: Python application on: push: branches: [ "master" ] permissions: contents: read jobs: bump_version: if: "!startsWith(...
1 vote
2 answers
757 views
Can Commitizen update pom.xml file?
I am working on a Java project and I'm using commitizen to enforce semantic version in CI, when I run the command cz bump and cz changelog update the .cz.yaml and changelog files with the new version ...
1 vote
0 answers
2k views
Commitizen in gitlab pipeline
I have to run Commitizen (cz bump) in gitlab pipeline. The problem is that firstly I have to run cz init and answer some questions. It is not possible in Pipeline. I received an error: $ cz bump [...