-
Notifications
You must be signed in to change notification settings - Fork 6
/
action.yml
40 lines (38 loc) · 942 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
39
40
# action.yml
---
name: FX Data Convert Action
description: Converts Forex historical data to different formats (e.g. CSV to HST/FXT/HCC)
author: kenorb
inputs:
CmdArgs:
description: Extra script arguments
default: -v
InputFile:
description: The filename to convert from
required: true
InputFormat:
description: The format of the file to convert from (csv, fxt, hst, hst509)
default: csv
OutputFormat:
description: The format of the file to convert to (csv, fxt, hcc, hst, hst509)
default: fxt
ModelingMode:
description: Mode of modeling price (for FXT)
default: 0
Pair:
description: Symbol pair code
default: FOOBAR
LogLevel:
description: Specifies level of verbosity (0-3)
default: 1
# outputs:
# foo: # id of output
# description: Foo
runs:
using: docker
image: Dockerfile
args:
- ${{ inputs.CmdArgs }}
branding:
icon: arrow-right-circle
color: blue