generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 3
/
action.yml
38 lines (31 loc) · 880 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
36
37
38
name: 'YAML Outputs'
description: 'Read a YAML file, flatten it recursively into a set of output parameters'
branding:
icon: arrow-right
color: green
inputs:
file-path:
required: true
description: 'The path of the YAML file to read'
separator:
required: false
description:
'The separator used to concatenate child properties. For example,
"root__parent__child: true"'
default: '__'
node:
required: false
description: 'The node to start flattening from. For example, "root.parent"'
export-env-variables:
required: false
description: 'Export outputs as environment variables'
default: true
fail-on-file-not-found:
required: false
description:
'Set to false if you do not want the action to fail if the file does not
exist'
default: true
runs:
using: 'node20'
main: 'dist/index.js'