From 34a9746f3d93283b958f4249b70afb7af0c62578 Mon Sep 17 00:00:00 2001 From: Shakar <5h4k4r.b4kr@gmail.com> Date: Wed, 13 Sep 2023 14:56:14 +0300 Subject: [PATCH] typo Signed-off-by: Shakar <5h4k4r.b4kr@gmail.com> --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 05f3d80..252ed70 100644 --- a/index.js +++ b/index.js @@ -5,11 +5,11 @@ const github = require('@actions/github'); try { const nameToGreet = core.getInput('who-to-greet'); const label = core.getInput('label'); - console.log(`Lable: ${label}`) + console.log(`Label: ${label}`) console.log(`Hello ${nameToGreet}!`); const time = (new Date()).toTimeString(); - core.setOutput("lable", label); + core.setOutput("label", label); core.setOutput("time", time); const payload = JSON.stringify(github.context.payload, undefined, 2)