-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
27 lines (26 loc) · 849 Bytes
/
action.yml
File metadata and controls
27 lines (26 loc) · 849 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
25
26
name: 'Get Release Notes from standard-version changelog'
description: 'Get release notes for Changelog from standatd-version'
inputs:
tag_name:
description: "Name of the tag whose release notes we are looking for (can have structure either 'refs/tags/{tag_name}' or 'tag_name')"
required: true
changelog:
description: "Path to changelog file to be parsed"
required: true
tag_name_prefix:
description: "Tag name prefix"
required: false
default: "v"
tag_name_ref_view:
description: "Tag name 'refs' structure or exact tag name ('refs/tags/vX.X.X' or 'vX.X.X')"
required: false
default: "false"
outputs:
notes:
description: "The serialized dict of the notes. Access the notes from the notes key of the dict"
runs:
using: "docker"
image: "Dockerfile"
branding:
icon: 'link'
color: 'green'