summaryrefslogtreecommitdiffstats
path: root/pkg/runner/testdata/actions/node12/action.yml
blob: 6aea4c035ec84918d9dc3456e5aadc93bf6f08a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 greeted you'
runs:
  using: 'node12'
  main: 'dist/index.js'