Merge pull request #3917 from goober/feature/add-configschema-for-bitbucket-scaffolder

Add config schema for Bitbucket scaffolder
This commit is contained in:
Ben Lambert
2021-01-05 15:31:19 +01:00
committed by GitHub
2 changed files with 8 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-scaffolder-backend': patch
---
Add config schema for Bitbucket scaffolder
+3
View File
@@ -27,5 +27,8 @@ export interface Config {
baseUrl: string;
api: { [key: string]: string };
};
bitbucket?: {
api: { [key: string]: string };
};
};
}