UNPKG

backport

Version:

A CLI tool that automates the process of backporting commits

10 lines (9 loc) 364 B
import type { Commit } from '../../../sourceCommit/parse-source-commit.js'; export declare function fetchCommitsForRebaseAndMergeStrategy(options: { githubToken: string; githubApiBaseUrlV4?: string; pullNumber: number; repoName: string; repoOwner: string; sourceBranch: string; }, commitsTotalCount: number): Promise<Commit[] | undefined>;