2020-10-25 02:25:23 +01:00
|
|
|
import * as github from '@actions/github';
|
|
|
|
import {Context} from '@actions/github/lib/context';
|
2021-05-25 02:07:25 +02:00
|
|
|
import {components as OctoOpenApiTypes} from '@octokit/openapi-types';
|
|
|
|
|
|
|
|
export type ReposGetResponseData = OctoOpenApiTypes['schemas']['repository'];
|
2020-10-25 02:25:23 +01:00
|
|
|
|
|
|
|
export function context(): Context {
|
|
|
|
return github.context;
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function repo(token: string): Promise<ReposGetResponseData> {
|
2021-05-25 02:07:25 +02:00
|
|
|
return github
|
|
|
|
.getOctokit(token)
|
|
|
|
.rest.repos.get({
|
|
|
|
...github.context.repo
|
|
|
|
})
|
|
|
|
.then(response => response.data as ReposGetResponseData);
|
2020-10-25 02:25:23 +01:00
|
|
|
}
|