backport
Version:
A CLI tool that automates the process of backporting commits
9 lines (8 loc) • 366 B
TypeScript
import type { Commit } from '../../sourceCommit/parse-source-commit.js';
export declare function getTargetPRLabels({ interactive, targetPRLabels, commits, targetBranch, copySourcePRLabels, }: {
interactive: boolean;
targetPRLabels: string[];
commits: Commit[];
targetBranch: string;
copySourcePRLabels: boolean | string | string[];
}): string[];