From 9209982b6de90f84fadb090b09341a4d9262f2ee Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@keylocation.sg>
Date: Sat, 1 Jul 2017 06:39:49 +0200
Subject: [PATCH] fix: drop preformatted changelog

No longer supporting preformatted (markdown) changelog input for templates.

BREAKING CHANGE: Preformatted {{changeloge}} no longer supported in PR body template.
Generate changelog using handlebars as in the default templtaes.
---
 lib/workers/pr/index.js | 2 --
 1 file changed, 2 deletions(-)

diff --git a/lib/workers/pr/index.js b/lib/workers/pr/index.js
index a5ebbcbce4..b359135290 100644
--- a/lib/workers/pr/index.js
+++ b/lib/workers/pr/index.js
@@ -65,8 +65,6 @@ async function ensurePr(upgrades, logger) {
     );
     // Store changelog markdown for backwards compatibility
     if (logJSON) {
-      config.changelog =
-        config.changelog || changelogHelper.getMarkdown(logJSON);
       upgrade.githubName = logJSON.project.github;
       upgrade.releases = [];
       logJSON.versions.forEach(version => {
-- 
GitLab