mirror of
https://github.com/orhun/git-cliff-action.git
synced 2026-03-22 07:25:43 +08:00
23 lines
501 B
YAML
23 lines
501 B
YAML
name: "git-cliff: Changelog Generator"
|
|
description: "Generate changelog based on your Git history"
|
|
inputs:
|
|
config:
|
|
description: "config file location"
|
|
required: false
|
|
default: "cliff.toml"
|
|
args:
|
|
description: "git-cliff arguments"
|
|
required: false
|
|
default: "-v"
|
|
outputs:
|
|
changelog:
|
|
description: "generated changelog"
|
|
runs:
|
|
using: "docker"
|
|
image: "Dockerfile"
|
|
args:
|
|
- "${{ inputs.args }} -c ${{ inputs.config }}"
|
|
branding:
|
|
icon: "triangle"
|
|
color: "orange"
|