( account: Account, url: Link, )
| 177 | * Endpoint documentation: https://docs.github.com/en/rest/releases/releases#get-a-release |
| 178 | */ |
| 179 | export async function getRelease( |
| 180 | account: Account, |
| 181 | url: Link, |
| 182 | ): Promise<GetReleaseResponse> { |
| 183 | return followUrl<GetReleaseResponse>(account, url); |
| 184 | } |
| 185 | |
| 186 | /** |
| 187 | * Get the `html_url` from the GitHub response |
no test coverage detected