2
0
Fork 0
mirror of https://code.forgejo.org/docker/metadata-action.git synced 2025-08-27 00:10:55 +00:00

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
No known key found for this signature in database
GPG key ID: 3248E46B6BB8C7F7
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);
}