Skip to content

Commit 0398b3a

Browse files
authored
Merge pull request #533 from dscho/avoid-cluttering-ci-output
Avoid cluttering ci output
2 parents d15aece + 9ff4c79 commit 0398b3a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

dist/index.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/git.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ async function clone(
4242
verbose: number | boolean,
4343
cloneExtraOptions: string[] = []
4444
): Promise<void> {
45-
if (verbose) core.notice(`Cloning ${url} to ${destination}`)
45+
if (verbose) core.info(`Cloning ${url} to ${destination}`)
4646
const child = spawn(
4747
gitExePath,
4848
[
@@ -110,7 +110,7 @@ export async function getViaGit(
110110
head_sha = info.data.commit.sha
111111
}
112112
const id = `${artifactName}-${head_sha}`
113-
core.notice(`Got commit ${head_sha} for ${repo}`)
113+
core.info(`Got commit ${head_sha} for ${repo}`)
114114

115115
return {
116116
artifactName,

0 commit comments

Comments
 (0)