From 7ec24d76f9e313a6f8f80db354ebc3942707401c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Sat, 23 Nov 2019 14:10:14 +0100 Subject: [PATCH] Don't check issues while generating the CHANGELOG We only include pull requests, so checking issues isn't useful and takes time. --- Rakefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Rakefile b/Rakefile index bcd7065ef..cf4070d5c 100644 --- a/Rakefile +++ b/Rakefile @@ -16,5 +16,6 @@ if Rails.env.development? config.future_release = "1.1.0" config.base = "#{Rails.root}/CHANGELOG.md" config.token = Rails.application.secrets.github_changelog_token + config.issues = false end end