fix(GHES): respect GITHUB_API_URL when creating installation access token (#38)

Follow up to #36. I just wanted to do some refactoring but turns out I
missed to pass the custom `request` instance to `createAppAuth`. It will
fallback to the default `request` which does not respect
`GITHUB_API_URL`
This commit is contained in:
Gregor Martynus
2023-08-29 22:29:41 -07:00
committed by GitHub
parent c72844caa4
commit c08c5ace34
5 changed files with 16 additions and 14 deletions

View File

@@ -2,9 +2,9 @@
import core from "@actions/core";
import { createAppAuth } from "@octokit/auth-app";
import { request } from "@octokit/request";
import { main } from "./lib/main.js";
import request from "./lib/request.js";
if (!process.env.GITHUB_REPOSITORY) {
throw new Error("GITHUB_REPOSITORY missing, must be set to '<owner>/<repo>'");