mirror of
https://github.com/actions/hello-world-javascript-action.git
synced 2025-04-05 14:09:39 +00:00
Initial commit
This commit is contained in:
14
action.yml
Normal file
14
action.yml
Normal file
@ -0,0 +1,14 @@
|
||||
# action.yml
|
||||
name: 'Hello World'
|
||||
description: 'Greet someone and record the time'
|
||||
inputs:
|
||||
who-to-greet: # id of input
|
||||
description: 'Who to greet'
|
||||
required: true
|
||||
default: 'World'
|
||||
outputs:
|
||||
time: # id of output
|
||||
description: 'The time we we greeted you'
|
||||
runs:
|
||||
using: 'node12'
|
||||
main: 'lib/hello-world.js'
|
Reference in New Issue
Block a user