generated from actions/javascript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
action.yml
33 lines (33 loc) · 1.03 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
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'
version:
description: 'Version of the log entry wanted'
required: false
validation_level:
description: 'Specifies if the CHANGELOG.md file should be validated and the behavior of the action'
required: false
default: 'none'
validation_depth:
description: 'Specifies how many entries to validate in the CHANGELOG.md file'
required: false
default: '10'
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: 'node20'
main: 'dist/index.js'