Skip to content

Commit

Permalink
Don't use ⚠️ for everything being up-to-date (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
crazy-max committed Sep 28, 2020
1 parent 7d60284 commit eac344e
Show file tree
Hide file tree
Showing 2 changed files with 181 additions and 116 deletions.
293 changes: 179 additions & 114 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/labeler.ts
Expand Up @@ -222,7 +222,7 @@ export class Labeler {
labels.push({
...fileLabel,
ghaction_status: LabelStatus.Skip,
ghaction_log: `⚠️ Skipping rename '${fileLabel.from_name}' label to '${fileLabel.name}'. Already exists`
ghaction_log: ` Skipping rename '${fileLabel.from_name}' label to '${fileLabel.name}'. Already exists`
});
continue;
}
Expand Down Expand Up @@ -268,7 +268,7 @@ export class Labeler {
labels.push({
...fileLabel,
ghaction_status: LabelStatus.Skip,
ghaction_log: `⚠️ Skipping update for '${fileLabel.name}' label. Same color and description`
ghaction_log: ` Skipping update for '${fileLabel.name}' label. Same color and description`
});
continue;
}
Expand Down

0 comments on commit eac344e

Please sign in to comment.