From 96be43ae86b8484661c67674897aa91a7554c897 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Sat, 23 Nov 2019 14:15:48 +0100 Subject: [PATCH] Don't generate authors in the CHANGELOG We were removing the authors manually after they were generated. --- Rakefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Rakefile b/Rakefile index cf4070d5c..0605cbeea 100644 --- a/Rakefile +++ b/Rakefile @@ -17,5 +17,6 @@ if Rails.env.development? config.base = "#{Rails.root}/CHANGELOG.md" config.token = Rails.application.secrets.github_changelog_token config.issues = false + config.author = false end end