From 9d863f2449e644722732d686026e0e71debd34b4 Mon Sep 17 00:00:00 2001 From: Mathiyarasy <157102811+Mathiyarasy@users.noreply.github.com> Date: Fri, 13 Sep 2024 20:59:35 +0530 Subject: [PATCH] Update index.js --- .github/actions/echo-hello/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/echo-hello/index.js b/.github/actions/echo-hello/index.js index 7ce53da..9995284 100644 --- a/.github/actions/echo-hello/index.js +++ b/.github/actions/echo-hello/index.js @@ -1,7 +1,7 @@ const core = require('@actions/core'); try { - const rts = core.getInput('rts'); + const rts = process.env.rts; console.log(`Hello, ${rts}`); } catch (error) { core.setFailed(error.message);