From 7f624e671034a21d85583a76c5324e6e645d2199 Mon Sep 17 00:00:00 2001 From: Paul Hatcherian <1835615+PaulHatch@users.noreply.github.com> Date: Wed, 2 Sep 2020 08:06:13 -0400 Subject: [PATCH] Remove log output from actions --- dist/index.js | 3 --- index.js | 3 --- 2 files changed, 6 deletions(-) diff --git a/dist/index.js b/dist/index.js index 21afc6d..54959a6 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1075,9 +1075,6 @@ async function run() { const log = await cmd(logCommand); - core.info("LOG:\n" + log) - - if (changePath !== '') { const changedFiles = await cmd(`git diff --name-only ${(root === '' ? branch : `${root}..${branch}`)} -- ${changePath}`); changed = changedFiles.length > 0; diff --git a/index.js b/index.js index c18e62d..223e9ac 100644 --- a/index.js +++ b/index.js @@ -129,9 +129,6 @@ async function run() { const log = await cmd(logCommand); - core.info("LOG:\n" + log) - - if (changePath !== '') { const changedFiles = await cmd(`git diff --name-only ${(root === '' ? branch : `${root}..${branch}`)} -- ${changePath}`); changed = changedFiles.length > 0;