Clean up scaffolder config

Signed-off-by: Tim Hansen <timbonicus@gmail.com>
This commit is contained in:
Tim Hansen
2021-12-01 10:20:38 -07:00
parent ab393eb0ee
commit 0398ea25d3
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';
};
};
}