Merge pull request #8309 from backstage/deprecate-scaffolder-config

Clean up scaffolder config
This commit is contained in:
Tim Hansen
2021-12-01 13:10:27 -07:00
committed by GitHub
3 changed files with 17 additions and 30 deletions
+12 -12
View File
@@ -28,30 +28,30 @@ export interface Config {
* The commit message used when new components are created.
*/
defaultCommitMessage?: string;
/**
* @deprecated Replaced by parameters for the publish:github action
*/
github?: {
[key: string]: string;
/**
* The visibility to set on created repositories.
*/
visibility?: 'public' | 'internal' | 'private';
};
/**
* @deprecated Use the Gitlab integration instead
*/
gitlab?: {
api: { [key: string]: string };
/**
* The visibility to set on created repositories.
*/
visibility?: 'public' | 'internal' | 'private';
};
/**
* @deprecated Use the Azure integration instead
*/
azure?: {
baseUrl: string;
api: { [key: string]: string };
};
/**
* @deprecated Use the Bitbucket integration instead
*/
bitbucket?: {
api: { [key: string]: string };
/**
* The visibility to set on created repositories.
*/
visibility?: 'public' | 'private';
};
};
}