generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
25 lines (25 loc) · 755 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
name: "Conventional Changelog Reader"
description: "Read and parse the CHANGELOG file of the project"
branding:
icon: "circle"
color: "purple"
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
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"