Skip to content

Commit 9e6c18a

Browse files
committed
Print skipped in magentaBright
1 parent 50745cd commit 9e6c18a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,13 @@ const runJobs = async () => {
5353

5454
for (const job of jobsInStage) {
5555
if (job.isManual() && !manualArgs.includes(job.name) && !job.isFinished()) {
56-
console.log(`${job.getJobNameString()} skipped. when:manual`);
56+
console.log(`${job.getJobNameString()} ${c.magentaBright("skipped")} when:manual`);
5757
job.setFinished(true);
5858
continue;
5959
}
6060

6161
if (job.isNever() && !job.isFinished()) {
62-
console.log(`${job.getJobNameString()} skipped. when:never`);
62+
console.log(`${job.getJobNameString()} ${c.magentaBright("skipped")} when:never`);
6363
job.setFinished(true);
6464
continue;
6565
}

0 commit comments

Comments
 (0)