diff --git a/.changeset/neat-spiders-glow.md b/.changeset/neat-spiders-glow.md new file mode 100644 index 0000000000..c2a19a17e0 --- /dev/null +++ b/.changeset/neat-spiders-glow.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-scaffolder-backend': patch +--- + +Indicate the name of the option that is being deprecated in task deprecation warning. diff --git a/plugins/scaffolder-backend/src/scaffolder/actions/builtin/fetch/template.ts b/plugins/scaffolder-backend/src/scaffolder/actions/builtin/fetch/template.ts index 1f80f92334..be7b47521c 100644 --- a/plugins/scaffolder-backend/src/scaffolder/actions/builtin/fetch/template.ts +++ b/plugins/scaffolder-backend/src/scaffolder/actions/builtin/fetch/template.ts @@ -150,7 +150,7 @@ export function createFetchTemplateAction(options: { let renderFilename: boolean; if (ctx.input.copyWithoutRender) { ctx.logger.warn( - '[Deprecated] Please use copyWithoutTemplating instead.', + '[Deprecated] copyWithoutRender is deprecated Please use copyWithoutTemplating instead.', ); copyOnlyPatterns = ctx.input.copyWithoutRender; renderFilename = false;