forked from Platane/snk
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathaction.yml
30 lines (27 loc) · 896 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
name: "Snake game generator from Github contributions"
description: "Snake game generator from a github contributions. Output the animation as gif or svg and you can set the snake color!"
author: "Sutil"
runs:
using: "docker"
image: "docker://edusutil/snk:blue"
inputs:
github_user_name:
description: "github user name"
required: true
gif_out_path:
description: "path of the generated gif file. If left empty, the gif file will not be generated."
required: false
default: null
svg_out_path:
description: "path of the generated svg file. If left empty, the svg file will not be generated."
required: false
default: null
snake_color:
description: "Hash color to draw the snake"
required: false
default: null
outputs:
gif_out_path:
description: "path of the generated gif"
svg_out_path:
description: "path of the generated svg"