backport
Version:
A CLI tool that automates the process of backporting commits
17 lines (16 loc) • 573 B
TypeScript
import { ValidConfigOptions } from '../../../../options/options';
import { Commit } from '../../../sourceCommit/parseSourceCommit';
export declare function fetchCommitsByAuthor(options: {
accessToken: string;
author: string | null;
branchLabelMapping?: ValidConfigOptions['branchLabelMapping'];
commitPaths?: string[];
dateSince: string | null;
dateUntil: string | null;
githubApiBaseUrlV4?: string;
maxNumber?: number;
onlyMissing?: boolean;
repoName: string;
repoOwner: string;
sourceBranch: string;
}): Promise<Commit[]>;