From 48fecd3ca779d44558000a4085dc36897fdc3ca8 Mon Sep 17 00:00:00 2001 From: Maximilian Berkmann Date: Mon, 28 Jan 2019 10:23:37 +0000 Subject: [PATCH] feat(contribution-types): added `business` and `content` (#156) I added the missing types for "Business development" and "Content". --- src/util/contribution-types.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/util/contribution-types.js b/src/util/contribution-types.js index db711a3..0d08749 100644 --- a/src/util/contribution-types.js +++ b/src/util/contribution-types.js @@ -12,11 +12,19 @@ const defaultTypes = function(repoType) { description: 'Bug reports', link: repo.getLinkToIssues(repoType), }, + business: { + symbol: '💼', + description: 'Business development', + }, code: { symbol: '💻', description: 'Code', link: repo.getLinkToCommits(repoType), }, + content: { + symbol: '🖋', + description: 'Content', + }, design: { symbol: '🎨', description: 'Design',