mirror of
https://github.com/orhun/git-cliff-action.git
synced 2026-03-22 07:25:43 +08:00
24 lines
492 B
YAML
24 lines
492 B
YAML
name: "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: "output file"
|
|
runs:
|
|
using: "docker"
|
|
image: "Dockerfile"
|
|
args:
|
|
- --config=${{ inputs.config }}
|
|
- ${{ inputs.args }}
|
|
branding:
|
|
icon: "triangle"
|
|
color: "orange"
|