Commit a2da478 1 parent 5a231d3 commit a2da478 Copy full SHA for a2da478
File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -93701,6 +93701,7 @@ const I = (x) => x
93701
93701
93702
93702
const detectPrNumber = async () => {
93703
93703
const {
93704
+ GITHUB_API_URL,
93704
93705
GITHUB_SHA,
93705
93706
GITHUB_TOKEN,
93706
93707
GITHUB_RUN_ID,
@@ -93726,7 +93727,8 @@ const detectPrNumber = async () => {
93726
93727
)
93727
93728
93728
93729
const client = new Octokit({
93729
- auth: GITHUB_TOKEN
93730
+ auth: GITHUB_TOKEN,
93731
+ baseUrl: GITHUB_API_URL
93730
93732
})
93731
93733
93732
93734
if (GITHUB_HEAD_REF) {
Original file line number Diff line number Diff line change @@ -438,6 +438,7 @@ const I = (x) => x
438
438
439
439
const detectPrNumber = async ( ) => {
440
440
const {
441
+ GITHUB_API_URL ,
441
442
GITHUB_SHA ,
442
443
GITHUB_TOKEN ,
443
444
GITHUB_RUN_ID ,
@@ -463,7 +464,8 @@ const detectPrNumber = async () => {
463
464
)
464
465
465
466
const client = new Octokit ( {
466
- auth : GITHUB_TOKEN
467
+ auth : GITHUB_TOKEN ,
468
+ baseUrl : GITHUB_API_URL
467
469
} )
468
470
469
471
if ( GITHUB_HEAD_REF ) {
You can’t perform that action at this time.
0 commit comments