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