generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
39 lines (39 loc) · 1.01 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Extract Changelog
description: Extracts a version from the changelog
branding:
icon: book-open
color: white
inputs:
version:
description: The version to extract
required: true
version-marker-type:
description: The markdown element to look for versions
required: false
default: heading
version-marker-depth:
description: The depth of the markdown element to look for versions
required: false
default: 2
changelog:
description: The changelog body.
If not provided, the `changelog-file` will be used
required: false
changelog-file:
description: The changelog file
required: false
default: CHANGELOG.md
include-header:
description: Whether to include the header in the output
required: false
default: false
ignore-missing:
description: Ignore missing `changelog-file` file
required: false
default: false
outputs:
body:
description: Extracted changelog body for the specified version
runs:
using: node20
main: dist/index.js