Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: commitizen-tools/commitizen-action
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.23.0
Choose a base ref
...
head repository: commitizen-tools/commitizen-action
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 9 commits
  • 6 files changed
  • 6 contributors

Commits on Dec 20, 2024

  1. Update entrypoint.sh

    plockaby authored Dec 20, 2024
    Configuration menu
    Copy the full SHA
    1dcad82 View commit details
    Browse the repository at this point in the history

Commits on Dec 21, 2024

  1. Merge pull request #97 from plockaby/patch-1

    fix: local_version flag is incorrect
    woile authored Dec 21, 2024
    Configuration menu
    Copy the full SHA
    721fe06 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a49cac8 View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2025

  1. ci: publish major and minor tags

    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: Create bump and changelog
      uses: commitizen-tools/commitizen-action@0
    ```
    
    (Ideally you may want to prefix version with `v` 🤷)
    
    This what this third party action does under the hood:
    
    ```bash
    $ TAG="0.21.0"
    $ MINOR="${TAG%.*}"
    $ echo $MINOR
    0.21
    $ MAJOR="${MINOR%.*}"
    $ echo $MAJOR
    0
    ```
    
    This is used here for example: https://github.com/astral-sh/setup-uv/blob/main/.github/workflows/update-major-minor-tags.yml
    nikaro committed Feb 5, 2025
    Configuration menu
    Copy the full SHA
    0121edc View commit details
    Browse the repository at this point in the history
  2. Merge pull request #88 from nikaro/ci/publish-major-minor-tag

    ci: publish major and minor tags
    woile authored Feb 5, 2025
    Configuration menu
    Copy the full SHA
    5bf62b0 View commit details
    Browse the repository at this point in the history

Commits on Feb 17, 2025

  1. Configuration menu
    Copy the full SHA
    e9a82c8 View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2025

  1. ci: trigger build

    ckagerer committed Feb 23, 2025
    Configuration menu
    Copy the full SHA
    863a354 View commit details
    Browse the repository at this point in the history

Commits on Feb 25, 2025

  1. Merge pull request #99 from ckagerer/feature/support-for-manual-version

    feat: add support for manual version bumping
    Lee-W authored Feb 25, 2025
    Configuration menu
    Copy the full SHA
    4787c27 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5b0848c View commit details
    Browse the repository at this point in the history
Loading