UNPKG

backport

Version:

A CLI tool that automates the process of backporting commits

12 lines (11 loc) 381 B
import { ValidConfigOptions } from '../../options/options'; import { Commit } from '../sourceCommit/parseSourceCommit'; export declare function cherrypickAndCreateTargetPullRequest({ options, commits, targetBranch, }: { options: ValidConfigOptions; commits: Commit[]; targetBranch: string; }): Promise<{ url: string; number: number; didUpdate: boolean; }>;