From 754bdc39c781b1c48f09ff7b58bf982953ae929a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Ribaudo?= Date: Tue, 25 Jun 2024 16:56:24 +0200 Subject: [PATCH] Add exceptions for IPR failures (#109) --- scripts/ipr-check.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/ipr-check.js b/scripts/ipr-check.js index e4c5c75..ea5886e 100644 --- a/scripts/ipr-check.js +++ b/scripts/ipr-check.js @@ -154,11 +154,12 @@ const usernames = request(sheetData).then((json) => JSON.parse(json)).then(data }); const exceptions = new Set([ - 'EricSL', // Google employee + 'fitzgen', // former Mozilla employee + 'lforst', // Sentry employee 'jaro-sevcik', // Google empolyee 'jkrems', // Google employee 'josephschorr', // former Google empolyee - 'sideshowbarker', // Mozilla employee + 'sideshowbarker', // Mozilla employee ].map(x => x.toLowerCase())); Promise.all([usernames, authors, delegates, emeriti]).then(([usernames, authors, delegates, emeriti]) => {