(branchName: string)
| 584 | fromBase64 = (str: string) => Base64.decode(str); |
| 585 | |
| 586 | async getBranch(branchName: string) { |
| 587 | const branch: GitLabBranch = await this.requestJSON( |
| 588 | `${this.repoURL}/repository/branches/${encodeURIComponent(branchName)}`, |
| 589 | ); |
| 590 | return branch; |
| 591 | } |
| 592 | |
| 593 | async uploadAndCommit( |
| 594 | items: CommitItem[], |
no outgoing calls
no test coverage detected