Merge pull request #9823 from backstage/blam/port-fix-back

`repoUrl` doesn't have a protocol change to mainline
This commit is contained in:
Ben Lambert
2022-02-25 18:21:15 +01:00
committed by GitHub
4 changed files with 13 additions and 2 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-scaffolder-backend': patch
---
Applied fix from version 0.17.2 of this package, which is part of the v0.69.2 release of Backstage.
+1 -1
View File
@@ -1,5 +1,5 @@
{
"currentReleaseVersion": {
"@backstage/plugin-scaffolder-backend": "0.17.1"
"@backstage/plugin-scaffolder-backend": "0.17.2"
}
}
+6
View File
@@ -1,5 +1,11 @@
# @backstage/plugin-scaffolder-backend
## 0.17.2
### Patch Changes
- bug: `repoUrl` does not have a protocol in `publish:github:pull-request`
## 0.17.1
### Patch Changes
@@ -66,7 +66,7 @@ export const defaultClientFactory = async ({
const octokitOptions = await getOctokitOptions({
integrations,
credentialsProvider: githubCredentialsProvider,
repoUrl: `https://${encodedHost}?owner=${encodedOwner}&repo=${encodedRepo}`,
repoUrl: `${encodedHost}?owner=${encodedOwner}&repo=${encodedRepo}`,
token: providedToken,
});