( account: Account, url: Link, )
| 165 | * Endpoint documentation: https://docs.github.com/en/rest/commits/comments#get-a-commit-comment |
| 166 | */ |
| 167 | export async function getCommitComment( |
| 168 | account: Account, |
| 169 | url: Link, |
| 170 | ): Promise<GetCommitCommentResponse> { |
| 171 | return followUrl<GetCommitCommentResponse>(account, url); |
| 172 | } |
| 173 | |
| 174 | /** |
| 175 | * Gets a public release with the specified release ID. |
no test coverage detected