From e5bd3b4c700ff91fd5b3228625a013ecf2b7cc7f Mon Sep 17 00:00:00 2001 From: "James, please" Date: Thu, 3 Aug 2017 09:36:29 -0700 Subject: [PATCH] feat(types): add new contribution type: Ideas, Planning, & Feedback (#45) * Add new contribution type: Ideas & Planning * add feedback to ideas * Update README.md --- README.md | 1 + lib/util/contribution-types.js | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/README.md b/README.md index d7d6a63..4af1f99 100644 --- a/README.md +++ b/README.md @@ -73,6 +73,7 @@ Where `username` is the user's GitHub username, and `contribution` is a `,`-sepa - financial: [💵](# "Financial") - fundingFinding: [🔍](# "Funding Finding") - eventOrganizing: [📋](# "Event Organizing") + - ideas: [🤔](# "Ideas, Planning, & Feedback") ## Configuration diff --git a/lib/util/contribution-types.js b/lib/util/contribution-types.js index 1868b37..477b5e7 100644 --- a/lib/util/contribution-types.js +++ b/lib/util/contribution-types.js @@ -85,6 +85,10 @@ var defaultTypes = { eventOrganizing: { symbol: '📋', description: 'Event Organizing' + }, + ideas: { + symbol: '🤔', + description: 'Ideas, Planning, & Feedback' } };