Skip to content

Commit 902e710

Browse files
committed
πŸ‘· Allow πŸ”‡ (remove logs) in PR title gitmoji check
Pairs with πŸ”Š (logging) β€” for commits that remove debug logs or telemetry rather than adding them.
1 parent 4cc5a19 commit 902e710

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

β€Ždocs/DEVELOPMENT.mdβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ label our Commit messages and Pull Request titles:
2626
- 🚨 **Linting** - Add/fix linter rules
2727
- 🧹 **Cleanup** - Minor cleanup, housekeeping
2828
- πŸ”Š **Logging** - Add/modify debug logs, telemetry
29+
- πŸ”‡ **Remove logs** - Remove debug logs or telemetry
2930

3031
## Dependency Management
3132

β€Žscripts/lib/gitmoji.tsβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ export const GITMOJI: readonly Gitmoji[] = [
2929
{ emoji: '🚨', label: 'Linting', category: 'internal' },
3030
{ emoji: '🧹', label: 'Cleanup', category: 'internal' },
3131
{ emoji: 'πŸ”Š', label: 'Logging', category: 'internal' },
32+
{ emoji: 'πŸ”‡', label: 'Remove logs', category: 'internal' },
3233
]
3334

3435
// Strip the Unicode variation selector (U+FE0F) so '⚑' and '⚑️' compare equal.

0 commit comments

Comments
Β (0)