-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
68 lines (67 loc) · 1.64 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: "MLSpec Sample Action - Process Data"
description: "Sample Action Example: Processing Data"
author: "aronchick"
inputs:
METASTORE_CREDENTIALS:
description: "Some text"
required: true
WORKFLOW_NODE_ID:
description: "Some text"
required: true
STEP_NAME:
description: "Some text"
required: true
SCHEMAS_DIRECTORY:
description: "Some text"
required: true
default: ".parameters/schemas"
SCHEMAS_GIT_URL:
description: "Some text"
required: false
PREVIOUS_STEP_NAME:
description: "Some text"
required: false
NEXT_STEP_NAME:
description: "Some text"
required: false
INPUT_PARAMETERS_RAW:
description: "Some text"
required: false
INPUT_PARAMETERS_BASE64:
description: "Some text"
required: false
INPUT_PARAMETERS_NODE_ID:
description: "Some text"
required: false
INPUT_PARAMETERS_FILE_PATH:
description: "Some text"
required: false
EXECUTION_PARAMETERS_RAW:
description: "Some text"
required: false
EXECUTION_PARAMETERS_BASE64:
description: "Some text"
required: false
EXECUTION_PARAMETERS_NODE_ID:
description: "Some text"
required: false
EXECUTION_PARAMETERS_FILE_PATH:
description: "Some text"
required: false
output:
output_base64_encoded:
description: "Some text"
input_node_id:
description: "Some text"
execution_node_id:
description: "Some text"
output_node_id:
description: "Some text"
log_node_id:
description: "Some text"
branding:
icon: "chevron-up"
color: "blue"
runs:
using: 'docker'
image: 'docker://mlspec/mlspeclib-action-samples-process-data:latest'