Skip to content

Commit 0edc896

Browse files
authored
chore(ci): add successful log to spreadGeneration (#370)
* chore(ci): add successful log to spreadGeneration * chore: update log
1 parent 431b986 commit 0edc896

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

scripts/ci/codegen/spreadGeneration.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,9 @@ async function spreadGeneration(): Promise<void> {
6565
cwd: tempGitDir,
6666
})) === 0
6767
) {
68-
console.log(`Skipping ${lang} repository, because there is no change.`);
68+
console.log(
69+
`❎ Skipping ${lang} repository, because there is no change.`
70+
);
6971
return;
7072
}
7173

@@ -77,6 +79,7 @@ async function spreadGeneration(): Promise<void> {
7779
cwd: tempGitDir,
7880
});
7981
await run(`git push`, { cwd: tempGitDir });
82+
console.log(`✅ Spread the generation to ${lang} repository.`);
8083
}
8184
}
8285

0 commit comments

Comments
 (0)