(params: ReleaseMutationParams)
| 165 | } |
| 166 | |
| 167 | async createRelease(params: ReleaseMutationParams): Promise<{ data: Release }> { |
| 168 | return this.github.rest.repos.createRelease(await this.prepareReleaseMutation(params)); |
| 169 | } |
| 170 | |
| 171 | async updateRelease( |
| 172 | params: ReleaseMutationParams & { |
nothing calls this directly
no test coverage detected