summaryrefslogtreecommitdiffstats
path: root/pkg/runner/testdata/actions/node16/action.yml
blob: 49bc24949ead8ae29d1229a635348cddeb7d8e9e (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: 'node16'
  main: 'dist/index.js'