MCPcopy
hub / github.com/softprops/action-gh-release / Release

Interface Release

src/github.ts:16–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14}
15
16export interface Release {
17 id: number;
18 upload_url: string;
19 html_url: string;
20 tag_name: string;
21 name: string | null;
22 body?: string | null | undefined;
23 target_commitish: string;
24 draft: boolean;
25 prerelease: boolean;
26 assets: Array<{ id: number; name: string; label?: string | null }>;
27}
28
29export interface ReleaseResult {
30 release: Release;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected