-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Clarify breaking change notice
- Loading branch information
Showing
1 changed file
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/[email protected], 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/[email protected] 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(' ')); | ||
} | ||
|
||
|