Merge pull request #9792 from kuangp/fix/githubPrAction
fix(githubPrAction): properly construct repoUrl
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/plugin-scaffolder-backend': patch
|
||||
---
|
||||
|
||||
Fix broken GitHub PR action due to malformed `repoUrl`
|
||||
+1
-1
@@ -72,7 +72,7 @@ export const defaultClientFactory = async ({
|
||||
const octokitOptions = await getOctokitOptions({
|
||||
integrations,
|
||||
credentialsProvider: githubCredentialsProvider,
|
||||
repoUrl: `https://${encodedHost}/${encodedOwner}/${encodedRepo}`,
|
||||
repoUrl: `${encodedHost}?owner=${encodedOwner}&repo=${encodedRepo}`,
|
||||
token: providedToken,
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user