emjs
This commit is contained in:
parent
8c86c45f27
commit
cc80fe9263
|
@ -7,9 +7,9 @@
|
|||
const getCommitEmoji = (message, stats) => {
|
||||
const msg = message.toLowerCase()
|
||||
if (msg.includes('merge') || msg.includes('merging')) return '📎'
|
||||
if (msg.includes('fix')) return '🔧'
|
||||
if (msg.includes('feat')) return '✨'
|
||||
if (msg.includes('break')) return '💥'
|
||||
if (msg.includes('fix') || msg.includes('improve') || msg.includes('optimiz')) return '🔧'
|
||||
if (msg.includes('feat') || msg.includes('implement') || msg.includes('added')) return '✨'
|
||||
if (msg.includes('break') || msg.includes('broken')) return '💥'
|
||||
if (msg.includes('docs') || msg.includes('documentation')) return '📚'
|
||||
if (msg.includes('test')) return '🧪'
|
||||
if (msg.includes('refactor')) return '🏭'
|
||||
|
|
Loading…
Reference in New Issue
Block a user