mirror of
https://github.com/bendtherules/hello-github-actions.git
synced 2026-08-18 13:53:58 +00:00
18 lines
262 B
YAML
18 lines
262 B
YAML
name: "Hello Actions"
|
|
description: "Greet someone"
|
|
author: "octocat@github.com"
|
|
|
|
inputs:
|
|
MY_NAME:
|
|
description: "Who to greet"
|
|
required: true
|
|
default: "World"
|
|
|
|
runs:
|
|
using: "docker"
|
|
image: "Dockerfile"
|
|
|
|
branding:
|
|
icon: "mic"
|
|
color: "purple"
|