From 1d5884b015257a8685a3a9f21080e79fc83d0a25 Mon Sep 17 00:00:00 2001 From: Dhaya <154633+dhayab@users.noreply.github.com> Date: Wed, 16 Aug 2023 13:57:41 +0200 Subject: [PATCH] chore(shipjs): update slack release notification message (#5814) --- ship.config.js | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/ship.config.js b/ship.config.js index 2ee82960c0..78865e45e4 100644 --- a/ship.config.js +++ b/ship.config.js @@ -106,17 +106,12 @@ _This pull request is automatically generated by [Ship.js](https://github.com/al prepared: null, releaseSuccess: ({ appName, - version, tagName, latestCommitHash, latestCommitUrl, repoURL, }) => ({ - pretext: [ - `:tada: Successfully released *${appName}@${version}*`, - '', - `Make sure to run \`yarn run release-templates\` in \`create-instantsearch-app\`.`, - ].join('\n'), + pretext: `:tada: Successfully released *${appName}*`, fields: [ { title: 'Branch', @@ -129,13 +124,12 @@ _This pull request is automatically generated by [Ship.js](https://github.com/al short: true, }, { - title: 'Version', - value: version, - short: true, + title: 'Versions', + value: tagName, }, { - title: 'Release', - value: `${repoURL}/releases/tag/${tagName}`, + title: 'Releases', + value: `${repoURL}/releases`, }, ], }),