17 lines
421 B
YAML
17 lines
421 B
YAML
# action.yml
|
|
name: "Hello World"
|
|
description: "Greet someone and record the time"
|
|
inputs:
|
|
kust_config: # id of input
|
|
description: "the kustomization configuration, e.g. kustomize/overlays/testing"
|
|
required: true
|
|
default: "kustomize/overlays/testing"
|
|
outputs:
|
|
time: # id of output
|
|
description: "The time we started"
|
|
runs:
|
|
using: "docker"
|
|
image: "Dockerfile"
|
|
args:
|
|
- ${{ inputs.kust_config }}
|