Skip to content

Commit eac344e

Browse files
committed
Don't use ⚠️ for everything being up-to-date (#112)
1 parent 7d60284 commit eac344e

File tree

2 files changed

+181
-116
lines changed

2 files changed

+181
-116
lines changed

dist/index.js

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

src/labeler.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ export class Labeler {
222222
labels.push({
223223
...fileLabel,
224224
ghaction_status: LabelStatus.Skip,
225-
ghaction_log: `⚠️ Skipping rename '${fileLabel.from_name}' label to '${fileLabel.name}'. Already exists`
225+
ghaction_log: ` Skipping rename '${fileLabel.from_name}' label to '${fileLabel.name}'. Already exists`
226226
});
227227
continue;
228228
}
@@ -268,7 +268,7 @@ export class Labeler {
268268
labels.push({
269269
...fileLabel,
270270
ghaction_status: LabelStatus.Skip,
271-
ghaction_log: `⚠️ Skipping update for '${fileLabel.name}' label. Same color and description`
271+
ghaction_log: ` Skipping update for '${fileLabel.name}' label. Same color and description`
272272
});
273273
continue;
274274
}

0 commit comments

Comments
 (0)