ccclog

Generate changelog from commit messages created by Conventional Commits.

Github Action codecov Latest version Documentation Docker License

Sample

Getting Started

```txt ❯❯ ccclog

[0.0.0] - 2020-05-16

Feat

```

```txt USAGE: ccclog [FLAGS] [OPTIONS] [--] [ARGS]

FLAGS: -e, --enable-email-link Make a link to the author using git config.email -h, --help Prints help information -r, --reverse Reverse commit display order -V, --version Prints version information

OPTIONS: -s, --ignore-summary Ignore summary use regex. Syntax: https://docs.rs/regex/1.3.7/regex/#syntax

-t, --ignore-types <ignore-types>...
        Ignore commit type. ex) feat|fix|build|doc|chore|ci|style|refactor|perf|test

-i, --root-indent-level <root-indent-level>    Change markdown root subject indent [default: 2]
-m, --tag-pattern <tag-pattern>
        Regular expression that matches the tag [default: ^v?\d+?.\d+?.\d+?(\-[\w.-]+?)?(\+[\w.-]+?)?$]

ARGS: Working directory of git [default: ] Revision spec. Ref to https://git-scm.com/book/en/v2/Git-Tools-Revision-Selection ```

Usage from Github Action

Inputs

repo_path

Working directory of git.

revision_spec

Revision spec. Ref to https://git-scm.com/book/en/v2/Git-Tools-Revision-Selection

Outputs

changelog

Generated changelog

Example usage

``` yaml name: Github Action Sample

on: push: tags: - '..*'

jobs: creategithubrelease: name: Create Github release # If you use actions, use the platform that docker works runs-on: ubuntu-latest

steps:
- name: Setup code
  uses: actions/checkout@v2
  with:
    # Set the required number to create a changelog.
    # If the history is small, it is recommended to specify 0 and acquire all history.
    fetch-depth: 0

- name: Fetch all tags
  # Get the tags to create history
  # `actions/checkout@v2` has the --not-tags option
  run: git fetch origin +refs/tags/*:refs/tags/*

- name: Create Changelog
  id: create_changelog
  uses: watawuwu/ccclog@gha-v0
  # with:
  #   repo_path: "."
  #   revision_spec: "..HEAD"

# You can also exec the binary
# - name: Create Changelog
#   id: create_changelog
#   shell: bash -x {0}
#   run: |
#     mkdir bin && curl --tlsv1.2 -sSf https://raw.githubusercontent.com/watawuwu/ccclog/master/install.sh | sh -s -- --prefix ./
#     changelog="$(bin/ccclog)"
#     changelog="${changelog//$'\n'/'%0A'}"
#     echo "::set-output name=changelog::$changelog"

- name: Create release
  id: create_release
  uses: actions/create-release@v1
  env:
    GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  with:
    tag_name: ${{ github.ref }}
    release_name: ${{ github.ref }}
    draft: false
    prerelease: false
    # outputs.changelog parameter is available
    body: ${{ steps.create_changelog.outputs.changelog }}

```

Installing

❯❯ curl --tlsv1.2 -sSf https://raw.githubusercontent.com/watawuwu/ccclog/master/install.sh | sh

``` ❯❯ git clone https://github.com/watawuwu/ccclog.git && cd ccclog

❯❯ make install ```

❯❯ cargo install ccclog

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Versioningx

We use SemVer for versioning.

License

This project is licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Authors