generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathaction.yml
25 lines (25 loc) · 824 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
outputs:
release-notes:
description: 'The release notes of the newly released version'
runs:
using: 'node20'
main: 'dist/index.js'