Merge pull request #30473 from KevinSnyderCodes/scaffolder-backend-module-github-input-error-fix-typo

Fix typo in `scaffolder-backend-module-github` `InputError`
This commit is contained in:
Ben Lambert
2025-07-09 10:07:04 +02:00
committed by GitHub
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-scaffolder-backend-module-github': patch
---
Fix typo in `InputError`
@@ -89,7 +89,7 @@ export async function getOctokitOptions(options: {
if (!owner || !repo) {
throw new InputError(
`No owner and/or owner provided, which is required if a token is not provided`,
`No owner and/or repo provided, which is required if a token is not provided`,
);
}