Skip to main content

createFetchTemplateAction()

Home > @backstage/plugin-scaffolder-backend > createFetchTemplateAction

Downloads a skeleton, templates variables into file and directory names and content. Then places the result in the workspace, or optionally in a subdirectory specified by the 'targetPath' input option.

Signature:

function createFetchTemplateAction(options: {
reader: UrlReaderService;
integrations: ScmIntegrations;
additionalTemplateFilters?: Record<string, TemplateFilter>;
additionalTemplateGlobals?: Record<string, TemplateGlobal>;
}): import("@backstage/plugin-scaffolder-node").TemplateAction<{
url: string;
targetPath?: string;
values: any;
templateFileExtension?: string | boolean;
copyWithoutRender?: string[];
copyWithoutTemplating?: string[];
cookiecutterCompat?: boolean;
replace?: boolean;
trimBlocks?: boolean;
lstripBlocks?: boolean;
token?: string;
}, import("@backstage/types").JsonObject, "v1">;

Parameters

Parameter

Type

Description

options

{ reader: UrlReaderService; integrations: ScmIntegrations; additionalTemplateFilters?: Record<string, TemplateFilter>; additionalTemplateGlobals?: Record<string, TemplateGlobal>; }

**Returns:**

import("@backstage/plugin-scaffolder-node").TemplateAction<{ url: string; targetPath?: string; values: any; templateFileExtension?: string | boolean; copyWithoutRender?: string[]; copyWithoutTemplating?: string[]; cookiecutterCompat?: boolean; replace?: boolean; trimBlocks?: boolean; lstripBlocks?: boolean; token?: string; }, import("@backstage/types").JsonObject, "v1">