Merge pull request #7587 from SDA-SE/feat/jenkins-pattern

Don't require a validation pattern for the jenkins base URL
This commit is contained in:
Patrik Oldsberg
2021-11-08 10:41:11 +01:00
committed by GitHub
2 changed files with 5 additions and 4 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-jenkins-backend': patch
---
Don't require a validation pattern for the Jenkins base URL.
-4
View File
@@ -17,7 +17,6 @@ export interface Config {
jenkins?: {
/**
* Default instance baseUrl, can be specified on a named instance called "default"
* @pattern "^https?://"
*/
baseUrl?: string;
/**
@@ -39,9 +38,6 @@ export interface Config {
*/
name: string;
/**
* @pattern "^https?://"
*/
baseUrl: string;
username: string;
/** @visibility secret */