✨ use process.env. instead of @action/core in test and local
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
import path from "path";
|
||||
import HtmlWebpackPlugin from "html-webpack-plugin";
|
||||
import webpack from "webpack";
|
||||
import * as core from "@actions/core";
|
||||
import { getGithubUserContribution } from "@snk/github-user-contribution";
|
||||
import { config } from "dotenv";
|
||||
import type { Configuration as WebpackConfiguration } from "webpack";
|
||||
@@ -17,8 +16,7 @@ const webpackDevServerConfiguration: WebpackDevServerConfiguration = {
|
||||
const userName: string = req.params.userName;
|
||||
res.send(
|
||||
await getGithubUserContribution(userName, {
|
||||
githubToken:
|
||||
process.env.GITHUB_TOKEN ?? core.getInput("github_token"),
|
||||
githubToken: process.env.GITHUB_TOKEN!,
|
||||
})
|
||||
);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user