From 81458ab4be09819c4cc12c9aebe22077b5c758fa Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Fri, 4 Feb 2022 14:25:44 +0100 Subject: [PATCH] Updated default changelog content if no emojis exist no issue - taken from internal feedback --- ghost/release-utils/lib/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghost/release-utils/lib/utils.js b/ghost/release-utils/lib/utils.js index b90608bb92..f4ea1df8f5 100644 --- a/ghost/release-utils/lib/utils.js +++ b/ghost/release-utils/lib/utils.js @@ -85,7 +85,7 @@ module.exports.getFinalChangelog = function getFinalChangelog(options) { } if (_.isEmpty(changelog)) { - changelog = ['No user-visible changes in this release.']; + changelog = ['This release contains fixes for minor bugs and issues reported by Ghost users.']; } finalChangelog = finalChangelog.concat(changelog);