-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaction.yml
More file actions
25 lines (25 loc) · 722 Bytes
/
action.yml
File metadata and controls
25 lines (25 loc) · 722 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
name: 'Generate Release Notes using Handlebars Template'
description: 'Generate Release Notes using the Github API and a Handlebars template'
author: 'Richard Fennell'
inputs:
templateFile:
required: true
description: 'The path to the Handlebars template'
default: 'template.md'
outputFile:
required: true
default: 'releasenotes.md'
extensionsFile:
required: false
description: 'The path to the an optional module of custom Handlebars functions'
default: ''
writeToJobSummary:
required: false
description: 'If true the output will be written to the Job Summary'
default: 'false'
runs:
using: 'node12'
main: 'dist/index.js'
branding:
icon: 'edit'
color: 'blue'