keep-a-changelog-new-release/action.yml

23 lines
731 B
YAML

name: 'Keep A Changelog - New Release'
description: 'Automatically update your CHANGELOG.md for a new release. Built for the keepachangelog.com format.'
author: 'Thomas Eizinger'
branding:
icon: list
color: white
inputs:
version:
description: 'The version of the new release'
required: false
tag:
description: 'The tag that contains the version of the new release'
required: false
date:
description: 'The date of the release. Defaults to today at the execution time. Accepts any format that Date.parse will accept.'
required: false
changelogPath:
description: 'The path to the changelog file. Defaults to `./CHANGELOG.md`'
required: false
runs:
using: 'node20'
main: 'dist/index.js'