backport
Version:
A CLI tool that automates the process of backporting commits
10 lines (9 loc) • 341 B
TypeScript
import { Commit } from '../../../../entrypoint.api';
export declare function fetchCommitsForRebaseAndMergeStrategy(options: {
accessToken: string;
githubApiBaseUrlV4?: string;
pullNumber: number;
repoName: string;
repoOwner: string;
sourceBranch: string;
}, commitsTotalCount: number): Promise<Commit[] | undefined>;