UNPKG

backport

Version:

A CLI tool that automates the process of backporting commits

15 lines (14 loc) 444 B
import { Commit } from '../../../sourceCommit/parseSourceCommit'; export declare function fetchPullRequestsBySearchQuery(options: { accessToken: string; author: string | null; dateSince: string | null; dateUntil: string | null; githubApiBaseUrlV4?: string; maxNumber?: number; onlyMissing?: boolean; prFilter: string; repoName: string; repoOwner: string; sourceBranch: string; }): Promise<Commit[]>;