-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaction.yml
29 lines (29 loc) · 970 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: "Markdown action: create indexes"
description: "Creates indexes pages for a markdown styled wiki"
branding:
icon: activity
color: green
inputs:
folder:
description: The folder path to start at
required: false
default: "${{ github.workspace }}"
filename:
description: The name of the file, default to 'index.md'
required: false
default: index.md
content:
description: The content of to add to the index file, default to '.content.md'
required: false
default: ".content.md"
include:
description: The files to additionaly include in the index file, follows glob pattern on the filenames, supports multiple patterns via multi-line string
required: false
default: ""
exclude:
description: The files to exclude from the index file, follows glob pattern on the filenames, supports multiple patterns via multi-line string
required: false
default: ""
runs:
using: "node20"
main: "dist/index.js"