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