-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
26 lines (26 loc) · 826 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
name: 'Convert Markdown to HTML'
description: 'Convert multiple markdown files to html files'
author: themeselection
branding:
icon: award
color: purple
inputs:
files:
description: 'Stringified Array of [Array of source md file & file to generate] (i.e. [ ["index.md", "index.html"], ["changelog.md", "changelog.html"]])'
required: false
theme:
description: 'Github Markdown theme to use. Options: "auto", "light" or "dark"'
default: Auto
debug:
description: Boolean value which will tell action to log the action it performs. Useful for debugging.
default: false
title:
description: 'Title of the HTML page'
# TODO: Get it from repo name
required: false
favicon:
description: 'Favicon of the HTML page'
required: false
runs:
using: 'node16'
main: 'dist/index.js'