-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathaction.yml
More file actions
24 lines (24 loc) · 771 Bytes
/
action.yml
File metadata and controls
24 lines (24 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name: 'Extract Release Notes'
description: 'Extract release notes from a "Keep a Changelog" changelog file.'
author: 'Felix Furrer'
branding:
icon: 'align-left'
color: 'white'
inputs:
changelog_file:
description: 'The input path of the changelog file. Default: `CHANGELOG.md`'
required: false
default: 'CHANGELOG.md'
release_notes_file:
description: 'The output path of the release notes file (optional).'
required: false
prerelease:
description: '`true` to get release notes from the `[Unreleased]` section. `false` to get release notes for the latest release. Default: `false`'
required: false
default: 'false'
outputs:
release_notes:
description: 'The escaped release notes.'
runs:
using: node24
main: dist/index.js