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, accessToken, interactive, dryRun, pullNumber, labels, }: {
githubApiBaseUrlV3?: string;
repoName: string;
repoOwner: string;
accessToken: string;
interactive: boolean;
dryRun?: boolean;
pullNumber: number;
labels: string[];
}): Promise<void>;