commitizen-action
commitizen-action copied to clipboard
Commitizen github action to bump and create changelog
Set `${{ github.token }}` as the default value for `github_token` input. This is the common practice, examples: * https://github.com/actions/checkout/blob/main/action.yml#L24 * https://github.com/astral-sh/setup-uv/pull/61
Make sure major and minor tags are up to date on a patch release. This would allow the common practice to use major tag on the action: ```yaml - name:...
First of all, thanks for the nice repo. I noticed one problem with bumping when resolving merge conflicts: I have three branches (dev, staging and main). Whenever I create a...
Hey guys, I wanted to run it from a different path but somehow commitizen doesn't recognize it. I tried it with `working-directory` but it fails
### Background When an automatic workflow with the `commitizen-action` is set to run on pushes to a remote branch, whenever two separate pushes are done in short succession (less time...
I have a workflow where I'm relying solely on the git history for version updates (no file changes). You can turn off any file updates or other git changes by...
# Feature: Commitizen gh action outputs the sha of the commit as an output to be used for downstream builds ```yaml steps: - uses: actions/checkout@v4 with: ref: ${steps.cz.outputs.sha} ``` #...
I have `commitizen-tools/[email protected]` in my workflow running cz bump, but as I've been working on getting it set up properly, I've run into an issue where if it fails and...