27 lines
841 B
YAML
27 lines
841 B
YAML
name: "generate-snake-game-from-github-contribution-grid"
|
|
description: "Generates a snake game from a github user contributions grid. Output the animation as gif or svg"
|
|
author: "platane"
|
|
|
|
runs:
|
|
using: docker
|
|
image: docker://platane/snk@sha256:368d5c159c47ebfe2c8afa2e2029fe4820e5fdfb80d69e499f327f895c5c2a00
|
|
|
|
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
|
|
|
|
outputs:
|
|
gif_out_path:
|
|
description: "path of the generated gif"
|
|
svg_out_path:
|
|
description: "path of the generated svg"
|