generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 32
/
action.yml
31 lines (31 loc) · 871 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
name: 'File Existence'
description: 'GitHub Action to check for file existence'
author: 'André Storhaug'
branding:
icon: 'file-text'
color: 'green'
inputs:
files:
description: 'Comma separated string with paths to files and directories to check for existence.'
required: true
ignore_case:
description: 'Ignore if a file has upper or lower cases.'
default: false
required: false
follow_symbolic_links:
description: 'Indicates whether to follow symbolic links.'
default: true
required: false
fail:
description: 'Makes the Action fail on missing files.'
default: false
required: false
allow_failure:
description: 'This variable is deprecated in favour of "fail".'
required: false
outputs:
files_exists:
description: 'Whether the file(s) exists or not.'
runs:
using: 'node20'
main: 'dist/index.js'