backport
Version:
A CLI tool that automates the process of backporting commits
11 lines (10 loc) • 365 B
TypeScript
export declare function addLabelsToPullRequest({ githubApiBaseUrlV3, repoName, repoOwner, githubToken, interactive, dryRun, pullNumber, labels, }: {
githubApiBaseUrlV3?: string;
repoName: string;
repoOwner: string;
githubToken: string;
interactive: boolean;
dryRun?: boolean;
pullNumber: number;
labels: string[];
}): Promise<void>;