(branchName: string)
| 575 | fromBase64 = (str: string) => Base64.decode(str); |
| 576 | |
| 577 | async getBranch(branchName: string) { |
| 578 | const branch: GitLabBranch = await this.requestJSON( |
| 579 | `${this.repoURL}/repository/branches/${encodeURIComponent(branchName)}`, |
| 580 | ); |
| 581 | return branch; |
| 582 | } |
| 583 | |
| 584 | async uploadAndCommit( |
| 585 | items: CommitItem[], |
no outgoing calls
no test coverage detected