backport
Version:
A CLI tool that automates the process of backporting commits
17 lines (16 loc) • 582 B
TypeScript
import type { ValidConfigOptions } from '../../../../options/options.js';
import type { Commit } from '../../../sourceCommit/parse-source-commit.js';
export declare function fetchCommitsByAuthor(options: {
githubToken: string;
author: string | null;
branchLabelMapping?: ValidConfigOptions['branchLabelMapping'];
commitPaths?: string[];
since: string | null;
until: string | null;
githubApiBaseUrlV4?: string;
maxCount?: number;
onlyMissing?: boolean;
repoName: string;
repoOwner: string;
sourceBranch: string;
}): Promise<Commit[]>;