From 1546fc66643f71c822213a93eeebfac681fdab21 Mon Sep 17 00:00:00 2001 From: tomsun28 Date: Fri, 13 Nov 2020 01:24:15 +0800 Subject: [PATCH] remove unnecessary log --- src/main.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main.ts b/src/main.ts index a005d7b..dc02e2f 100644 --- a/src/main.ts +++ b/src/main.ts @@ -34,9 +34,7 @@ async function run(): Promise { if (bot_login_name === null || bot_login_name === undefined || bot_login_name === '') { octokit = github.getOctokit(myToken) const botInfo = await octokit.request('GET /user') - core.info(JSON.stringify(botInfo)) bot_login_name = botInfo.data.login - core.info(`bot_login_name2: ${bot_login_name}`) } if (bot_login_name === issue_user) { core.info(`The issue comment user is bot ${bot_login_name} himself, ignore return.`) -- GitLab