From 5add488dc0c6dc907018db6a3fbb391f34007971 Mon Sep 17 00:00:00 2001 From: David Hiendl Date: Tue, 24 Oct 2023 12:54:40 +0200 Subject: [PATCH] test --- action.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/action.js b/action.js index eb44971..4a480e9 100644 --- a/action.js +++ b/action.js @@ -8,7 +8,8 @@ try { // `who-to-greet` input defined in action metadata file const stripTaxPrefix = core.getBooleanInput('strip_tag_prefix'); - console.log(JSON.stringify(github.context.payload)) + console.log(JSON.stringify(github.context)) + console.log("github.context.ref="+github.context.ref) const isTag = github.context.ref.startsWith("refs/tags/") core.setOutput("git_is_tag", isTag ? "true" : "false")