1
1
// @ts -check
2
2
import * as process from 'node:process' ;
3
- import { Octokit } from '@octokit/core' ;
4
3
import { output } from './util.mjs' ;
5
4
6
5
const {
7
6
GITHUB_TOKEN = '' ,
8
7
PR_LIST = '' ,
9
- owner = 'mongodb-js' ,
10
- repo = 'nodejs-mongodb-legacy'
8
+ REPOSITORY = ''
11
9
} = process . env ;
12
10
if ( GITHUB_TOKEN === '' ) throw new Error ( 'GITHUB_TOKEN cannot be empty' ) ;
11
+ if ( REPOSITORY === '' ) throw new Error ( 'REPOSITORY cannot be empty' )
13
12
14
- const octokit = new Octokit ( {
15
- auth : GITHUB_TOKEN ,
16
- log : {
17
- debug : msg => console . error ( 'Octokit.debug' , msg ) ,
18
- info : msg => console . error ( 'Octokit.info' , msg ) ,
19
- warn : msg => console . error ( 'Octokit.warn' , msg ) ,
20
- error : msg => console . error ( 'Octokit.error' , msg )
13
+ const API_REQ_INFO = {
14
+ headers : {
15
+ Accept : 'application/vnd.github.v3+json' ,
16
+ 'X-GitHub-Api-Version' : '2022-11-28' ,
17
+ Authorization : `Bearer ${ GITHUB_TOKEN } `
21
18
}
22
- } ) ;
19
+ }
23
20
24
21
const prs = PR_LIST . split ( ',' ) . map ( pr => {
25
22
const prNum = Number ( pr ) ;
@@ -35,13 +32,10 @@ async function getPullRequestContent(pull_number) {
35
32
36
33
let body ;
37
34
try {
38
- const res = await octokit . request ( 'GET /repos/{owner}/{repo}/pulls/{pull_number}' , {
39
- owner,
40
- repo,
41
- pull_number,
42
- headers : { 'X-GitHub-Api-Version' : '2022-11-28' }
43
- } ) ;
44
- body = res . data . body ;
35
+ const response = await fetch ( new URL ( `https://api.github.com/repos/${ REPOSITORY } /pulls/${ pull_number } ` ) , API_REQ_INFO ) ;
36
+ if ( ! response . ok ) throw new Error ( await response . text ( ) ) ;
37
+ const pr = await response . json ( ) ;
38
+ body = pr . body ;
45
39
} catch ( error ) {
46
40
console . log ( `Could not get PR ${ pull_number } , skipping. ${ error . status } ` ) ;
47
41
return '' ;
@@ -70,7 +64,10 @@ async function pullRequestHighlights(prs) {
70
64
if ( ! highlights . length ) return '' ;
71
65
72
66
highlights . unshift ( '## Release Notes\n\n' ) ;
73
- return highlights . join ( '\n\n' ) ;
67
+
68
+ const highlight = highlights . join ( '\n\n' ) ;
69
+ console . log ( `Total highlight is ${ highlight . length } characters long` ) ;
70
+ return highlight ;
74
71
}
75
72
76
73
console . log ( 'List of PRs to collect highlights from:' , prs ) ;
0 commit comments