backport
Version:
A CLI tool that automates the process of backporting commits
16 lines (15 loc) • 427 B
TypeScript
export interface TargetBranchResponse {
repository: {
ref: {
id: string;
} | null;
};
}
export declare function validateTargetBranch({ accessToken, repoName, repoOwner, branchName, githubApiBaseUrlV4, interactive, }: {
accessToken: string;
repoOwner: string;
repoName: string;
branchName: string;
githubApiBaseUrlV4?: string;
interactive: boolean;
}): Promise<void>;