UNPKG

backport

Version:

A CLI tool that automates the process of backporting commits

8 lines (7 loc) 303 B
import type { Commit } from '../../sourceCommit/parse-source-commit.js'; export declare function getConfiguredTargetPRLabels({ commits, targetBranch, targetPRLabels, interactive, }: { commits: Commit[]; targetBranch: string; targetPRLabels: string[]; interactive: boolean; }): string[];