UNPKG

backport

Version:

A CLI tool that automates the process of backporting commits

10 lines (9 loc) 443 B
import type { ValidConfigOptions } from '../../../../options/options.js'; import type { Commit } from '../../../sourceCommit/parse-source-commit.js'; export declare function getPullRequestBody({ options, commits, targetBranch, hasAnyCommitWithConflicts, unresolvedFiles, }: { options: ValidConfigOptions; commits: Commit[]; targetBranch: string; hasAnyCommitWithConflicts?: boolean; unresolvedFiles?: string[]; }): string;