File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 19
19
node-version : 14.x
20
20
21
21
- name : Get PR number and send to tracker.
22
- run : npx ts- node scripts/ci/log-changesets.ts
22
+ run : node scripts/ci/log-changesets.js
Original file line number Diff line number Diff line change 15
15
* limitations under the License.
16
16
*/
17
17
18
- import { ClientRequest , IncomingMessage } from 'http' ;
19
-
20
18
const https = require ( 'https' ) ;
21
19
22
20
async function logChangesets ( ) {
@@ -49,9 +47,9 @@ async function logChangesets() {
49
47
} ;
50
48
51
49
return new Promise ( ( resolve , reject ) => {
52
- const req : ClientRequest = https . request (
50
+ const req = https . request (
53
51
options ,
54
- ( res : IncomingMessage ) => {
52
+ ( res ) => {
55
53
res . on ( 'data' , d => {
56
54
process . stdout . write ( d ) ;
57
55
} ) ;
You can’t perform that action at this time.
0 commit comments