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

23 lines
731 B
YAML
Raw Permalink Normal View History

2020-02-15 10:00:56 +05:30
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'
2020-02-15 13:19:51 +05:30
branding:
icon: list
color: white
2020-02-15 10:00:56 +05:30
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
2020-02-15 11:19:02 +05:30
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
2020-02-15 10:00:56 +05:30
runs:
2024-03-01 14:58:02 +05:30
using: 'node20'
2020-02-15 10:00:56 +05:30
main: 'dist/index.js'