From c995b80da6cc42ef663197e91500873561b35de5 Mon Sep 17 00:00:00 2001 From: Evan Rusackas Date: Thu, 24 Jun 2021 16:39:14 -0600 Subject: [PATCH 1/2] chore: adding comments, removing Polidea --- src/config.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/config.js b/src/config.js index 21ce006..80d6301 100644 --- a/src/config.js +++ b/src/config.js @@ -1,4 +1,6 @@ -exports.ORG_WHITELIST = ['preset-io', 'Polidea', 'polidea', 'airbnb', 'dropbox', 'lyft', 'Flexiana', 'Turing']; +// these are known github orgs we care about - we'll automatically tag people belonging to them +exports.ORG_WHITELIST = ['preset-io', 'airbnb', 'dropbox', 'lyft', 'Flexiana', 'Turing']; +// these are individual github handles that we tant to add explicit tags for. exports.USER_ORG_XREF = { 'michael-s-molina': 'Turing', maloun96: 'Flexiana', @@ -8,10 +10,10 @@ exports.USER_ORG_XREF = { 'rosemarie-chiu': 'Preset-QA', 'adam-stasiak': 'Preset-QA' }; +// these GROUPS serve to aggregate people from the above two sets. exports.ORG_GROUPS = { Flexiana: 'preset-ext', Turing: 'preset-ext', - Polidea: 'preset-ext' }; // Heroku app needs to be woken up periodically to prevent it to go to sleep // https://quickleft.com/blog/6-easy-ways-to-prevent-your-heroku-node-app-from-sleeping/ From 648f4891f75f336d3000cce61ca97b0ef55a3556 Mon Sep 17 00:00:00 2001 From: Evan Rusackas Date: Thu, 24 Jun 2021 16:40:25 -0600 Subject: [PATCH 2/2] chore: linting --- src/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.js b/src/config.js index 80d6301..e6372b0 100644 --- a/src/config.js +++ b/src/config.js @@ -13,7 +13,7 @@ exports.USER_ORG_XREF = { // these GROUPS serve to aggregate people from the above two sets. exports.ORG_GROUPS = { Flexiana: 'preset-ext', - Turing: 'preset-ext', + Turing: 'preset-ext' }; // Heroku app needs to be woken up periodically to prevent it to go to sleep // https://quickleft.com/blog/6-easy-ways-to-prevent-your-heroku-node-app-from-sleeping/