Skip to content

Commit

Permalink
Merge pull request #4 from pablonete/create-sample-action
Browse files Browse the repository at this point in the history
Create action.yml
  • Loading branch information
pablonete authored Jun 4, 2021
2 parents 0257cf3 + d6a677b commit 42f3125
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .actions/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: 'Hello Who'
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 greeted you'
runs:
using: 'node12'
main: 'index.js'

0 comments on commit 42f3125

Please sign in to comment.