Skip to content

Commit

Permalink
Remove log output from actions
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulHatch committed Sep 2, 2020
1 parent 02c6ec5 commit 7f624e6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
3 changes: 0 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 7f624e6

Please sign in to comment.