chore(scaffolder): add changeset for getOctokitOptions function signature change
Signed-off-by: Benjamin Janssens <benji.janssens@gmail.com>
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
---
|
||||
'@backstage/plugin-scaffolder-backend-module-github': patch
|
||||
---
|
||||
|
||||
The `getOctokitOptions` function signature with `repoUrl` option has been deprecated in favour of a function signature with individual `host`, `owner`, and `repo` parameters:
|
||||
|
||||
```diff
|
||||
const octokitOptions = await getOctokitOptions({
|
||||
integrations,
|
||||
credentialsProvider,
|
||||
token,
|
||||
- repoUrl,
|
||||
+ host,
|
||||
+ owner,
|
||||
+ repo,
|
||||
});
|
||||
```
|
||||
Reference in New Issue
Block a user