Merge pull request #18480 from philips-forks/master

sonarqube: Make default config optional
This commit is contained in:
Ben Lambert
2023-06-29 10:44:06 +02:00
committed by GitHub
3 changed files with 9 additions and 3 deletions
+6
View File
@@ -0,0 +1,6 @@
---
'@backstage/plugin-sonarqube': patch
'@backstage/plugin-sonarqube-backend': patch
---
Made default config optional
+2 -2
View File
@@ -21,13 +21,13 @@ export interface Config {
* The base url of the sonarqube installation. Defaults to https://sonarcloud.io.
* @visibility frontend
*/
baseUrl: string;
baseUrl?: string;
/**
* The api key to access the sonarqube instance under baseUrl.
* @visibility secret
*/
apiKey: string;
apiKey?: string;
/**
* The optional sonarqube instances.
+1 -1
View File
@@ -21,6 +21,6 @@ export interface Config {
* The base url of the sonarqube installation. Defaults to https://sonarcloud.io.
* @visibility frontend
*/
baseUrl: string;
baseUrl?: string;
};
}