Skip to content

Commit 45b0074

Browse files
committed
🔊 Change sync log message
1 parent fbd3b04 commit 45b0074

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

dist/index.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -30707,12 +30707,11 @@ const run = async () => {
3070730707
await git.setPrWarning()
3070830708
}
3070930709

30710+
core.info(`Locally syncing file(s) between source and target repository`)
3071030711
const modified = []
3071130712

3071230713
// Loop through all selected files of the source repo
3071330714
await forEach(item.files, async (file) => {
30714-
core.info(`Looking for changed files`)
30715-
3071630715
const fileExists = fs.existsSync(file.source)
3071730716
if (fileExists === false) return core.warning(`Source ${ file.source } not found`)
3071830717

src/index.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,11 @@ const run = async () => {
4747
await git.setPrWarning()
4848
}
4949

50+
core.info(`Locally syncing file(s) between source and target repository`)
5051
const modified = []
5152

5253
// Loop through all selected files of the source repo
5354
await forEach(item.files, async (file) => {
54-
core.info(`Looking for changed files`)
55-
5655
const fileExists = fs.existsSync(file.source)
5756
if (fileExists === false) return core.warning(`Source ${ file.source } not found`)
5857

0 commit comments

Comments
 (0)