From 36a902841b9ed850523cf60b36a12168fef4e5e0 Mon Sep 17 00:00:00 2001 From: Nick Alteen Date: Thu, 14 Sep 2023 10:35:27 -0400 Subject: [PATCH] Commend and format action.yml --- action.yml | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/action.yml b/action.yml index 60ff07b..7f69e47 100644 --- a/action.yml +++ b/action.yml @@ -1,13 +1,19 @@ -name: 'Wait' -description: 'Wait a designated number of milliseconds' +name: 'The name of your action here' +description: 'Provide a description here' +author: 'Your name or organization here' + +# Define your inputs here. inputs: - milliseconds: # id of input - description: 'number of milliseconds to wait' + milliseconds: + description: 'Your input description here' required: true default: '1000' + +# Define your outputs here. outputs: - time: # output will be available to future steps - description: 'The current time after waiting' + time: + description: 'Your output description here' + runs: - using: 'node16' - main: 'dist/index.js' + using: node20 + main: dist/index.js