emojisadded
This commit is contained in:
parent
6e31b73c1b
commit
7365da6c48
|
@ -12,7 +12,15 @@ const getCommitEmoji = (message, stats) => {
|
|||
if (msg.includes('break')) return '💥'
|
||||
if (msg.includes('docs')) return '📚'
|
||||
if (msg.includes('test')) return '🧪'
|
||||
if (msg.includes('refactor')) return '♻️'
|
||||
if (msg.includes('refactor')) return '🏭'
|
||||
if (msg.includes('chore')) return '📘'
|
||||
if (msg.includes('style')) return '🎨'
|
||||
if (msg.includes('perf')) return '⚡'
|
||||
if (msg.includes('ci')) return '🚛'
|
||||
if (msg.includes('build')) return '🏗️'
|
||||
if (msg.includes('revert')) return '🤸'
|
||||
if (msg.includes('release')) return '🏆'
|
||||
if (msg.includes('wip')) return '🚧'
|
||||
if (stats.additions > 100 || stats.deletions > 100) return '🔨'
|
||||
return '📝'
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user