use input instead of env to receive github token

Co-authored-by: Platane <me@platane.me>
This commit is contained in:
Awayume
2023-10-09 16:04:10 +09:00
committed by Platane
parent 01fa6d7aac
commit c9644d3dfa
8 changed files with 19 additions and 14 deletions

View File

@@ -1,3 +1,4 @@
import * as core from "@actions/core";
import { getGithubUserContribution } from "@snk/github-user-contribution";
import { VercelRequest, VercelResponse } from "@vercel/node";
import nodeFetch from "node-fetch";
@@ -12,7 +13,7 @@ export default async (req: VercelRequest, res: VercelResponse) => {
res.statusCode = 200;
res.json(
await getGithubUserContribution(userName as string, {
githubToken: process.env.GITHUB_TOKEN!,
githubToken: process.env.GITHUB_TOKEN ?? core.getInput("github_token"),
})
);
} catch (err) {