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

8
lib/request.js Normal file
View File

@@ -0,0 +1,8 @@
import { request } from "@octokit/request";
export default request.defaults({
baseUrl: process.env["GITHUB_API_URL"],
headers: {
"user-agent": "actions/create-github-app-token",
},
});