UNPKG

@bifravst/ci

Version:

Sets up the permissions in our CI account for all repositories in this account to be able to use it for CI runs.

8 lines (7 loc) 239 B
export type Repository = { owner: string; name: string; id: number; }; export type Repos = Array<Repository>; export declare const listRepos: (token: string, repos: Array<Omit<Repository, "id">>) => Promise<Array<Repository>>;