Commend and format action.yml

This commit is contained in:
Nick Alteen 2023-09-14 10:35:27 -04:00
parent 6e72f47586
commit 36a902841b

View File

@ -1,13 +1,19 @@
name: 'Wait' name: 'The name of your action here'
description: 'Wait a designated number of milliseconds' description: 'Provide a description here'
author: 'Your name or organization here'
# Define your inputs here.
inputs: inputs:
milliseconds: # id of input milliseconds:
description: 'number of milliseconds to wait' description: 'Your input description here'
required: true required: true
default: '1000' default: '1000'
# Define your outputs here.
outputs: outputs:
time: # output will be available to future steps time:
description: 'The current time after waiting' description: 'Your output description here'
runs: runs:
using: 'node16' using: node20
main: 'dist/index.js' main: dist/index.js