Files
backstage/.changeset/fast-rabbits-unite.md
T
blam 347835413c chore: added deprecation prefix
Signed-off-by: blam <ben@blam.sh>
2025-02-04 14:52:34 +01:00

429 B

@backstage/plugin-scaffolder-backend-module-github
@backstage/plugin-scaffolder-backend-module-github
patch

DEPRECATION: The getOctokitOptions function signature with repoUrl option has been deprecated in favour of a function signature with individual host, owner, and repo parameters:

  const octokitOptions = await getOctokitOptions({
    integrations,
    credentialsProvider,
    token,
-   repoUrl,
+   host,
+   owner,
+   repo,
  });