UNPKG

backport

Version:

A CLI tool that automates the process of backporting commits

8 lines (7 loc) 317 B
import type { ValidConfigOptions } from '../../options/options.js'; import type { Commit } from '../sourceCommit/parse-source-commit.js'; export declare function getBackportBranchName({ options, targetBranch, commits, }: { options: ValidConfigOptions; targetBranch: string; commits: Commit[]; }): string;