chore: update the changeset in main for the emergency release

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2022-02-25 08:13:46 +01:00
parent 226210ed14
commit 4cd2787846
4 changed files with 11 additions and 3 deletions
+3 -1
View File
@@ -1,3 +1,5 @@
{
"currentReleaseVersion": {}
"currentReleaseVersion": {
"@backstage/plugin-scaffolder-backend": "0.17.1"
}
}
+1 -1
View File
@@ -2,4 +2,4 @@
'@backstage/plugin-scaffolder-backend': patch
---
Fix broken GitHub PR action due to malformed `repoUrl`
Applied fix from `v0.17.1` of this package which is part of the `v0.69.1` release of Backstage.
+6
View File
@@ -1,5 +1,11 @@
# @backstage/plugin-scaffolder-backend
## 0.17.1
### Patch Changes
- bug: fixing `repoUrl` resolution for `publish:github:pull-request` action
## 0.17.0
### Minor Changes
@@ -72,7 +72,7 @@ export const defaultClientFactory = async ({
const octokitOptions = await getOctokitOptions({
integrations,
credentialsProvider: githubCredentialsProvider,
repoUrl: `${encodedHost}?owner=${encodedOwner}&repo=${encodedRepo}`,
repoUrl: `https://${encodedHost}?owner=${encodedOwner}&repo=${encodedRepo}`,
token: providedToken,
});