chore: remove the deprecated provider config

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2022-02-16 10:19:17 +01:00
parent 6bc4a0a7a4
commit 65e0322e0d
-25
View File
@@ -28,30 +28,5 @@ 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;
};
/**
* @deprecated Use the Gitlab integration instead
*/
gitlab?: {
api: { [key: string]: string };
};
/**
* @deprecated Use the Azure integration instead
*/
azure?: {
baseUrl: string;
api: { [key: string]: string };
};
/**
* @deprecated Use the Bitbucket integration instead
*/
bitbucket?: {
api: { [key: string]: string };
};
};
}