Merge pull request #9823 from backstage/blam/port-fix-back
`repoUrl` doesn't have a protocol change to mainline
This commit is contained in:
@@ -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,5 +1,5 @@
|
||||
{
|
||||
"currentReleaseVersion": {
|
||||
"@backstage/plugin-scaffolder-backend": "0.17.1"
|
||||
"@backstage/plugin-scaffolder-backend": "0.17.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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
|
||||
|
||||
+1
-1
@@ -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,
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user