-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
41 lines (38 loc) · 1 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
name: 'Generate Directory Listing Action'
description: 'Generate index.html files for directory listing.'
author: 'yKicchan'
branding:
icon: 'file-plus'
color: 'green'
runs:
using: 'node20'
main: 'dist/index.js'
inputs:
target:
description: 'Path to target directory.'
required: true
viewType:
description: |
View type of the directory listing.
Available options: `table`, `list`.
required: false
default: 'table'
ignore:
description: |
Pattern to ignore files or directories.
Multiple patterns can be separated by commas.
ex. `node_modules, **/*.log`
required: false
showHiddenFiles:
description: 'Show hidden files in the directory listing.'
required: false
default: 'false'
theme:
description: |
Path to a custom CSS file for styling.
Must be a relative path from the target directory.
required: false
override:
description: 'Override existing index.html files.'
required: false
default: 'false'