✨ use process.env. instead of @action/core in test and local
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
import * as core from "@actions/core";
|
||||
import { getGithubUserContribution } from "@snk/github-user-contribution";
|
||||
import { VercelRequest, VercelResponse } from "@vercel/node";
|
||||
import nodeFetch from "node-fetch";
|
||||
@@ -13,7 +12,7 @@ export default async (req: VercelRequest, res: VercelResponse) => {
|
||||
res.statusCode = 200;
|
||||
res.json(
|
||||
await getGithubUserContribution(userName as string, {
|
||||
githubToken: process.env.GITHUB_TOKEN ?? core.getInput("github_token"),
|
||||
githubToken: process.env.GITHUB_TOKEN!,
|
||||
})
|
||||
);
|
||||
} catch (err) {
|
||||
|
||||
Reference in New Issue
Block a user