Merge pull request #9823 from backstage/blam/port-fix-back
`repoUrl` doesn't have a protocol change to mainline
This commit is contained in:
@@ -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