Merge pull request #6037 from SDA-SE/feat/bitbucket-public

This commit is contained in:
Dominik Henneke
2021-06-14 20:32:30 +02:00
committed by GitHub
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-scaffolder-backend': patch
---
Use the correct parameter to create a public repository in Bitbucket Server.
@@ -174,7 +174,7 @@ export class BitbucketPublisher implements PublisherBase {
body: JSON.stringify({
name: name,
description: description,
is_private: this.config.repoVisibility === 'private',
public: this.config.repoVisibility === 'public',
}),
headers: {
Authorization: this.getAuthorizationHeader(),