File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ export async function run(): Promise<void> {
19
19
} )
20
20
21
21
core . debug ( `Path to OpenAPI: ${ pathToOpenApi } ` )
22
+ core . debug ( `GitHub repo: ${ process . env . GITHUB_REPOSITORY } ` )
23
+ core . debug ( `GitHub repo ID: ${ process . env . GITHUB_REPOSITORY_ID } ` )
22
24
23
25
core . debug ( `Upload started: ${ new Date ( ) . toTimeString ( ) } ` )
24
26
await upload ( pathToOpenApi , heyApiToken , dryRun )
Original file line number Diff line number Diff line change 1
- import * as core from '@actions/core'
2
1
import { readFileSync } from 'node:fs'
3
2
4
3
/**
@@ -34,9 +33,6 @@ export async function upload(
34
33
formData [ 'dry-run' ] = dryRun
35
34
}
36
35
37
- core . debug ( `GitHub repo: ${ process . env . GITHUB_REPOSITORY } ` )
38
- core . debug ( `GitHub repo ID: ${ process . env . GITHUB_REPOSITORY_ID } ` )
39
-
40
36
const body = Object . entries ( formData )
41
37
. flatMap (
42
38
( [ key , value ] ) =>
You can’t perform that action at this time.
0 commit comments