From 61491cb4d9c7b2fa1090b540a9256ddbf0858901 Mon Sep 17 00:00:00 2001 From: Samuel Ryan Date: Sat, 7 Sep 2024 02:52:54 +0700 Subject: [PATCH] refactor: Clarify breaking change notice --- src/extract.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/extract.js b/src/extract.js index 26cc94c..54bad03 100644 --- a/src/extract.js +++ b/src/extract.js @@ -9,9 +9,11 @@ async function run() { if (!core.getInput('destination')) { core.notice([ - 'As you did not specify a destination, the default is being used.', - 'As of version shrink/actions-docker-extract@3.0.1, the default does not include a dot prefix.', + 'As you did not specify a docker extract destination, the default is being used.', + 'As of shrink/actions-docker-extract@3.0.1 the default does not include a dot prefix.', + `v3.0.0: "${destination}", v3.0.1: ".${destination}"`, 'See https://github.com/shrink/actions-docker-extract/issues/28 for context.', + 'No action is required unless this Workflow depends upon the dot prefix.' ].join(' ')); }