mirror of
https://github.com/PaulHatch/semantic-version.git
synced 2025-12-27 13:08:17 +00:00
Remove log output from actions
This commit is contained in:
parent
02c6ec5e4f
commit
7f624e6710
2 changed files with 0 additions and 6 deletions
3
dist/index.js
vendored
3
dist/index.js
vendored
|
|
@ -1075,9 +1075,6 @@ async function run() {
|
||||||
|
|
||||||
const log = await cmd(logCommand);
|
const log = await cmd(logCommand);
|
||||||
|
|
||||||
core.info("LOG:\n" + log)
|
|
||||||
|
|
||||||
|
|
||||||
if (changePath !== '') {
|
if (changePath !== '') {
|
||||||
const changedFiles = await cmd(`git diff --name-only ${(root === '' ? branch : `${root}..${branch}`)} -- ${changePath}`);
|
const changedFiles = await cmd(`git diff --name-only ${(root === '' ? branch : `${root}..${branch}`)} -- ${changePath}`);
|
||||||
changed = changedFiles.length > 0;
|
changed = changedFiles.length > 0;
|
||||||
|
|
|
||||||
3
index.js
3
index.js
|
|
@ -129,9 +129,6 @@ async function run() {
|
||||||
|
|
||||||
const log = await cmd(logCommand);
|
const log = await cmd(logCommand);
|
||||||
|
|
||||||
core.info("LOG:\n" + log)
|
|
||||||
|
|
||||||
|
|
||||||
if (changePath !== '') {
|
if (changePath !== '') {
|
||||||
const changedFiles = await cmd(`git diff --name-only ${(root === '' ? branch : `${root}..${branch}`)} -- ${changePath}`);
|
const changedFiles = await cmd(`git diff --name-only ${(root === '' ? branch : `${root}..${branch}`)} -- ${changePath}`);
|
||||||
changed = changedFiles.length > 0;
|
changed = changedFiles.length > 0;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue