Remove log output from actions

This commit is contained in:
Paul Hatcherian 2020-09-02 08:06:13 -04:00
parent 02c6ec5e4f
commit 7f624e6710
2 changed files with 0 additions and 6 deletions

3
dist/index.js vendored
View file

@ -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;

View file

@ -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;