From 3ef67e76ce7d33e1777f1d674dc93cf6a808bde9 Mon Sep 17 00:00:00 2001 From: Nick Crews Date: Wed, 13 Oct 2021 06:01:02 -0600 Subject: [PATCH] Fix description of `time` output in action.yml (#76) The old example probably is not what people should emulate when they write descriptions of their actions' outputs. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index e6a0bae..9c65c17 100644 --- a/action.yml +++ b/action.yml @@ -7,7 +7,7 @@ inputs: default: '1000' outputs: time: # output will be available to future steps - description: 'The message to output' + description: 'The current time after waiting' runs: using: 'node12' main: 'dist/index.js'