From eb44d97db952f1769b8d9cf81228e6e80433cd7f Mon Sep 17 00:00:00 2001 From: Shakar Bakr <5h4k4r.b4kr@gmail.com> Date: Sun, 8 Oct 2023 17:10:46 +0300 Subject: [PATCH] Log github token Signed-off-by: Shakar Bakr <5h4k4r.b4kr@gmail.com> --- index.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/index.js b/index.js index 7cd8e4d..a82a3a5 100644 --- a/index.js +++ b/index.js @@ -12,6 +12,10 @@ async function run() { console.log(`CWD: ${process.cwd()}`) console.log(`filePath: ${core.getInput('filePath')}`) + const githubToken = process.env.GITHUB_TOKEN; + + console.log("githubToken", githubToken) + const patterns = ['src/**/*.csproj', 'package.json'] const globber = await glob.create(patterns.join('\n')) const files = await globber.glob()