generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: upgrade deps and fix typing issues (#41)
- Loading branch information
1 parent
07b20f5
commit 87e7256
Showing
7 changed files
with
4,719 additions
and
11,138 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,14 @@ | ||
import {RestEndpointMethodTypes} from '@octokit/rest'; | ||
import {RestEndpointMethodTypes} from '@octokit/plugin-rest-endpoint-methods'; | ||
import {operations} from '@octokit/openapi-types'; | ||
|
||
// @octokit/rest > Endpoints.d.ts > PullsGetResponseData | ||
export type PullRequest = RestEndpointMethodTypes['pulls']['get']['response']['data']; | ||
|
||
type ChecksCreate = operations['checks/create']['requestBody']['content']['application/json']; | ||
|
||
type Output = NonNullable<ChecksCreate['output']>; | ||
|
||
export type Annotations = NonNullable<Output['annotations']>; | ||
|
||
export type Images = NonNullable<Output['images']>; | ||
|
||
export type Actions = NonNullable<ChecksCreate['actions']>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters