-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
35 lines (32 loc) · 821 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
30
31
32
33
34
35
name: 'Print folder tree'
author: 'Kenny Wong'
description: 'View the folder directory tree structure, similar to the output of the `tree` command'
inputs:
token:
description: 'Your GITHUB_TOKEN'
default: ${{ github.token }}
required: false
path:
description: 'Folder path'
default: '.'
required: false
exclude:
description: 'Pass a regex string to exclude directories from printing'
default: ''
required: false
config:
description: 'The path to the dree configuration file'
required: false
depth:
description: 'Scan the maximum depth reachable for the given path'
default: 5
required: false
outputs:
content:
description: 'Directory tree structure text'
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'file'
color: 'purple'