forked from mindsers/changelog-reader-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
29 lines (29 loc) · 890 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
26
27
28
29
name: 'Changelog Reader'
description: 'Read and parse the CHANGELOG file of the project'
branding:
icon: 'align-right'
color: 'gray-dark'
inputs:
path:
description: 'Path to the CHANGELOG file containing the log entries'
required: false
default: './CHANGELOG.md'
validation_depth:
description: 'Specifies how many entries to validate in the CHANGELOG.md file'
required: false
default: '0'
version:
description: 'Version of the log entry wanted'
required: false
outputs:
version:
description: 'Version of the log entry found'
date:
description: 'Release date of the log entry found'
status:
description: 'Status of the log entry found. Possibly one of the following: prereleased, released, unreleased, or yanked'
changes:
description: 'Description text of the log entry found'
runs:
using: 'node12'
main: 'dist/index.js'