From bd5cbba03ee8c20509a48592933043cdd0098966 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Astori?= Date: Sat, 26 Jan 2019 16:03:51 -0500 Subject: [PATCH] Do not report the (renamed) Renovate bot as a contributor --- scripts/changelog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/changelog.js b/scripts/changelog.js index f0e4a255..f94f3091 100644 --- a/scripts/changelog.js +++ b/scripts/changelog.js @@ -688,7 +688,7 @@ function dedupeEntries(changelog, items) { // (with format `@username`) of everyone who contributed to this version. function extractContributors(entries) { const set = Object.values(entries).reduce((memo, pullRequest) => { - if (pullRequest.author.login !== "greenkeeper" && pullRequest.author.login !== "renovate-bot") { + if (pullRequest.author.login !== "renovate") { memo.add("@" + pullRequest.author.login); }