UNPKG

backport

Version:

A CLI tool that automates the process of backporting commits

15 lines (14 loc) 444 B
import type { Commit } from '../../../sourceCommit/parse-source-commit.js'; export declare function fetchPullRequestsBySearchQuery(options: { githubToken: string; author: string | null; since: string | null; until: string | null; githubApiBaseUrlV4?: string; maxCount?: number; onlyMissing?: boolean; prQuery: string; repoName: string; repoOwner: string; sourceBranch: string; }): Promise<Commit[]>;