-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
41 lines (37 loc) · 924 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
41
name: 'Graph charts'
description: 'Create graph charts by input json data source'
author: 'AlexRogalskiy'
inputs:
url:
description: 'graph image json source url to fetch data from'
required: true
name:
description: 'graph chart image name'
required: false
default: 'demo'
path:
description: 'graph chart image path'
required: false
default: 'images'
extension:
description: 'graph chart image extension'
required: false
default: 'svg'
width:
description: 'graph chart image width'
required: false
default: '1024'
height:
description: 'graph chart image height'
required: false
default: '768'
outputs:
image:
description: 'graph chart image generated by input json data source'
runs:
using: 'node12'
main: 'dist/index.js'
# Ref: https://haya14busa.github.io/github-action-brandings/
branding:
icon: 'bar-chart'
color: 'purple'