From 69cb849ef0e69018bbd1544101de9738e641f233 Mon Sep 17 00:00:00 2001 From: Tom - Henry Coursow Date: Thu, 27 Jul 2023 21:33:01 +0200 Subject: [PATCH] action.yml aktualisiert --- action.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/action.yml b/action.yml index 0559a16..ce8e7df 100644 --- a/action.yml +++ b/action.yml @@ -16,6 +16,11 @@ inputs: required: false default: 10 +outputs: + lastNumber: + description: 'The last fibonacci number printed during the execution of the action' + # value: ... # The value key is not needed (like nedded with composite actions) because the main.js will set the ouput value + runs: using: 'node16' # Must be 'nodeXX' for a custom js action main: 'main.js' # The JS File to execute which will handle action processing