From f9f2866bbb47b7673194ecd8ffbcaecfbebc0bcc Mon Sep 17 00:00:00 2001 From: LaChapeliere Date: Fri, 9 Oct 2020 20:34:34 +0200 Subject: [PATCH] feat(contribution-types): add research contribution type (#291) * feat(contribution-types.js): add research contribution type Add a research contribution type with microscope emoji, for people doing literature review, code prototyping or any other research-related activity. #446 * fix(contribution-types.js): fix name and position of added type Fix name of added type (was "question" due to copy pasting) and position (alphabetical order) #446 * Transform emoji code into emoji Co-authored-by: Maximilian Berkmann Co-authored-by: Maximilian Berkmann --- src/util/contribution-types.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/util/contribution-types.js b/src/util/contribution-types.js index 7cefd72..9807326 100644 --- a/src/util/contribution-types.js +++ b/src/util/contribution-types.js @@ -94,6 +94,10 @@ const defaultTypes = function(repoType) { symbol: '💬', description: 'Answering Questions', }, + research: { + symbol: '🔬', + description: 'Research', + }, review: { symbol: '👀', description: 'Reviewed Pull Requests',