dev: update fixtures

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax
2022-04-19 13:18:06 +02:00
parent f2a13332ac
commit 5f62bc0532
47 changed files with 3174 additions and 1123 deletions

View File

@ -11,8 +11,6 @@ export function context(): Context {
export async function repo(token: string): Promise<ReposGetResponseData> {
return github
.getOctokit(token)
.rest.repos.get({
...github.context.repo
})
.rest.repos.get({...github.context.repo})
.then(response => response.data as ReposGetResponseData);
}