mirror of
https://github.com/docker/metadata-action.git
synced 2024-12-22 23:05:31 +00:00
5f62bc0532
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
17 lines
536 B
TypeScript
17 lines
536 B
TypeScript
import * as github from '@actions/github';
|
|
import {Context} from '@actions/github/lib/context';
|
|
import {components as OctoOpenApiTypes} from '@octokit/openapi-types';
|
|
|
|
export type ReposGetResponseData = OctoOpenApiTypes['schemas']['repository'];
|
|
|
|
export function context(): Context {
|
|
return github.context;
|
|
}
|
|
|
|
export async function repo(token: string): Promise<ReposGetResponseData> {
|
|
return github
|
|
.getOctokit(token)
|
|
.rest.repos.get({...github.context.repo})
|
|
.then(response => response.data as ReposGetResponseData);
|
|
}
|