Files
container-toolkit-action/action.yml
T

27 lines
560 B
YAML
Raw Normal View History

2025-07-11 13:25:44 -04:00
name: The name of your action here
description: Provide a description here
author: Your name or organization here
# Add your action's branding here. This will appear on the GitHub Marketplace.
branding:
icon: heart
color: red
2023-09-15 12:32:25 -04:00
# Define your inputs here.
inputs:
milliseconds:
2025-07-11 13:25:44 -04:00
description: Your input description here
2023-09-15 12:32:25 -04:00
required: true
default: '1000'
# Define your outputs here.
outputs:
time:
2025-07-11 13:25:44 -04:00
description: Your output description here
2023-09-15 12:32:25 -04:00
2019-08-01 18:04:11 +00:00
runs:
2023-09-15 12:32:25 -04:00
using: docker
image: Dockerfile
env:
2023-09-15 12:36:19 -04:00
INPUT_MILLISECONDS: ${{ inputs.milliseconds }}