-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathaction.yml
More file actions
33 lines (33 loc) · 1.08 KB
/
action.yml
File metadata and controls
33 lines (33 loc) · 1.08 KB
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: "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: ""
includeExt:
description: Whether to include the file extension in the index file links
required: false
default: "false"
runs:
using: "node20"
main: "dist/index.js"