-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
32 lines (28 loc) · 748 Bytes
/
action.yml
File metadata and controls
32 lines (28 loc) · 748 Bytes
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
name: 'File Analytics'
description: 'An action to get file size and date from a glob of files'
author: 'Francisco Knebel'
inputs:
files:
description: 'File pattern to get metadata from'
required: true
follow-symbolic-links:
description: 'Indicates whether to follow symbolic links'
default: true
output_json:
description: 'Indicates to output the metadata as JSON to this file'
default: 'false'
outputs:
file_output:
description: 'File metadata in JSON format'
file_info:
description: 'File metadata in text format'
file_size:
description: 'Total file size'
file_count:
description: 'Total file count'
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'file'
color: 'blue'