mirror of
https://github.com/actions/runner.git
synced 2025-12-10 20:36:49 +00:00
22 lines
729 B
YAML
22 lines
729 B
YAML
name: 'Hello World'
|
|
description: 'Greet the world and record the time'
|
|
author: 'Test Corporation'
|
|
inputs:
|
|
greeting: # id of input
|
|
description: 'The greeting we choose - will print ""{greeting}, World!"" on stdout'
|
|
required: true
|
|
default: 'Hello'
|
|
deprecationMessage: 'This property has been deprecated'
|
|
entryPoint: # id of input
|
|
description: 'optional docker entrypoint overwrite.'
|
|
required: false
|
|
outputs:
|
|
time: # id of output
|
|
description: 'The time we did the greeting'
|
|
icon: 'hello.svg' # vector art to display in the GitHub Marketplace
|
|
color: 'green' # optional, decorates the entry in the GitHub Marketplace
|
|
runs:
|
|
using: 'node12'
|
|
main: 'main.js'
|
|
pre: 'init.js'
|
|
pre-if: 'cancelled()' |