summaryrefslogtreecommitdiffstats
path: root/pkg/runner/testdata/actions/docker-local/action.yml
blob: 5d3ce62402354db889c8b89f8bac190b15acd625 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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: 'docker'
  image: 'Dockerfile'
  env:
    WHOAMI: ${{ inputs.who-to-greet }}
  args:
    - ${{ inputs.who-to-greet }}