From 0907e3c54f281622346d56c170e52c986dd54b52 Mon Sep 17 00:00:00 2001 From: Tejas Kumar Date: Tue, 18 May 2021 17:30:56 +0200 Subject: [PATCH] Add deprecation notice to deprecated publisher Signed-off-by: Tejas Kumar --- .../scaffolder-backend/src/scaffolder/stages/publish/github.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/scaffolder-backend/src/scaffolder/stages/publish/github.ts b/plugins/scaffolder-backend/src/scaffolder/stages/publish/github.ts index c7b7076095..1bb04904f0 100644 --- a/plugins/scaffolder-backend/src/scaffolder/stages/publish/github.ts +++ b/plugins/scaffolder-backend/src/scaffolder/stages/publish/github.ts @@ -29,6 +29,7 @@ import path from 'path'; export type RepoVisibilityOptions = 'private' | 'internal' | 'public'; +/** @deprecated */ export class GithubPublisher implements PublisherBase { static async fromConfig( config: GitHubIntegrationConfig,