Skip to content

Commit

Permalink
chore: publish dist
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Oct 11, 2021
1 parent 58802dd commit e6f0df4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2266,7 +2266,7 @@ function run() {
}
const octokit = github_1.DefaultOctokit({
auth: config.GITHUB_TOKEN,
baseUrl: process.env.GITHUB_API_URL || "https://api.github.com"
baseUrl: config.GITHUB_API_URL
});
let repos;
if (config.REPOSITORIES_LIST_REGEX) {
Expand Down Expand Up @@ -5724,6 +5724,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
const core = __importStar(__webpack_require__(470));
function getConfig() {
const config = {
GITHUB_API_URL: core.getInput("GITHUB_API_URL") ||
process.env.GITHUB_API_URL ||
"https://api.github.com",
GITHUB_TOKEN: core.getInput("GITHUB_TOKEN", { required: true }),
CONCURRENCY: Number(core.getInput("CONCURRENCY")),
RETRIES: Number(core.getInput("RETRIES")),
Expand Down

0 comments on commit e6f0df4

Please sign in to comment.