Retrieves the running user's GitHub authentication token. ๐ช
npm i get-github-auth-tokenimport { getGitHubAuthToken } from "get-github-auth-token";
const auth = await getGitHubAuthToken("Hello, world! ๐");
if (auth.succeeded) {
console.log("Token:", auth.token);
} else {
console.error("Oh no:", auth.error);
}getGitHubAuthToken attempts to find a GitHub auth token from the following places, in order:
process.env.GH_TOKEN- Executing
gh auth tokenas a child process
๐ก Using this to create a new Octokit instance? See JoshuaKGoldberg/octokit-from-auth.
See .github/CONTRIBUTING.md, then .github/DEVELOPMENT.md.
Thanks! ๐ช
Josh Goldberg โจ ๐ป ๐ ๐ ๐ค ๐ ๐ง ๐ ๐ง ๐ |
uncenter ๐ค |
๐ This package was templated with
create-typescript-appusing the Bingo framework.