From eeda5f17c22f704d2659be85bc7bff80084398f8 Mon Sep 17 00:00:00 2001 From: Malted Date: Thu, 4 Aug 2022 14:55:33 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Add=20=F0=9F=A7=B5=20emoji=20(#1106?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * ✨Add 🧵 emoji * ✨ Add 🧵 emoji * ✨ Change 🧵 emoji colour * ✅ Update snapshots * 🚨 Fix lint error --- .../__snapshots__/pages.spec.js.snap | 41 +++++++++++++++++++ src/components/GitmojiList/emojiColorsMap.js | 1 + src/data/gitmojis.json | 8 ++++ 3 files changed, 50 insertions(+) diff --git a/src/__tests__/__snapshots__/pages.spec.js.snap b/src/__tests__/__snapshots__/pages.spec.js.snap index 40f7cad103..755dfdbfcb 100644 --- a/src/__tests__/__snapshots__/pages.spec.js.snap +++ b/src/__tests__/__snapshots__/pages.spec.js.snap @@ -3510,6 +3510,47 @@ exports[`Pages Index should render the page 1`] = ` +
+
+
+ +
+
+ +

+ Add or update code related to multithreading or concurrency. +

+
+
+
`; diff --git a/src/components/GitmojiList/emojiColorsMap.js b/src/components/GitmojiList/emojiColorsMap.js index 17254e0e62..8c1f5a0f23 100644 --- a/src/components/GitmojiList/emojiColorsMap.js +++ b/src/components/GitmojiList/emojiColorsMap.js @@ -73,4 +73,5 @@ export default { bricks: '#ff6723', technologist: '#86B837', 'money-with-wings': '#b3c0b1', + thread: '#ffbe7b', } diff --git a/src/data/gitmojis.json b/src/data/gitmojis.json index 4d8f0a219f..0a945af5c3 100644 --- a/src/data/gitmojis.json +++ b/src/data/gitmojis.json @@ -567,6 +567,14 @@ "description": "Add sponsorships or money related infrastructure.", "name": "money-with-wings", "semver": null + }, + { + "emoji": "🧵", + "entity": "🧵", + "code": ":thread:", + "description": "Add or update code related to multithreading or concurrency.", + "name": "thread", + "semver": null } ] }