Formatting and testing

This commit is contained in:
Nick Alteen
2023-09-15 12:32:25 -04:00
parent 8530abdd1e
commit 5d385f5f67
8 changed files with 10613 additions and 48 deletions
+20 -9
View File
@@ -1,10 +1,21 @@
name: 'Container Action Template'
description: 'Get started with Container actions'
author: 'GitHub'
inputs:
myInput:
description: 'Input to use'
default: 'world'
name: 'The name of your action here'
description: 'Provide a description here'
author: 'Your name or organization here'
# Define your inputs here.
inputs:
milliseconds:
description: 'Your input description here'
required: true
default: '1000'
# Define your outputs here.
outputs:
time:
description: 'Your output description here'
runs:
using: 'docker'
image: 'Dockerfile'
using: docker
image: Dockerfile
env:
INPUT_MILLISECONDS: ${{ milliseconds}}