allow/validate bitbucket_username / bitbucket_password in private config schema (#8472)

Co-authored-by: repo-ranger[bot] <39074581+repo-ranger[bot]@users.noreply.github.com>
This commit is contained in:
chris48s
2022-10-08 10:37:05 +00:00
committed by GitHub
co-authored by repo-ranger[bot] <39074581+repo-ranger[bot]@users.noreply.github.com>
parent 96a93a6146
commit d78a2f4155
+2
View File
@@ -169,6 +169,8 @@ const privateConfigSchema = Joi.object({
jenkins_pass: Joi.string(),
jira_user: Joi.string(),
jira_pass: Joi.string(),
bitbucket_username: Joi.string(),
bitbucket_password: Joi.string(),
bitbucket_server_username: Joi.string(),
bitbucket_server_password: Joi.string(),
librariesio_tokens: Joi.arrayFromString().items(Joi.string()),