mirror of
https://github.com/garronej/ts-ci.git
synced 2025-11-30 21:43:05 +00:00
10 lines
237 B
TypeScript
10 lines
237 B
TypeScript
|
|
|
||
|
|
import { Octokit } from "@octokit/rest";
|
||
|
|
|
||
|
|
export function createOctokit(params: { github_token: string; }) {
|
||
|
|
|
||
|
|
const { github_token } = params;
|
||
|
|
|
||
|
|
return new Octokit({ ...(github_token !== "" ? { "auth": github_token } : {}) });
|
||
|
|
|
||
|
|
}
|