From 770dd2e293017f6ce1cbbeeff54af41abdb9c763 Mon Sep 17 00:00:00 2001 From: James Date: Fri, 24 Feb 2023 13:53:10 +0000 Subject: [PATCH] action.yml: add outputs of the action (time) The javascript action does this: https://github.com/actions/javascript-action/blob/main/action.yml --- action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/action.yml b/action.yml index ec5fee4..6f552b3 100644 --- a/action.yml +++ b/action.yml @@ -6,6 +6,9 @@ inputs: required: true description: 'input description here' default: 'default value if applicable' +outputs: + time: # output will be available to future steps + description: 'The current time after waiting' runs: using: 'node16' main: 'dist/index.js'