backport
Version:
A CLI tool that automates the process of backporting commits
7 lines (6 loc) • 331 B
TypeScript
import type { ValidConfigOptions } from '../../../options/options.js';
import type { Commit } from '../../sourceCommit/parse-source-commit.js';
export declare function getSourcePRLabelsToCopy({ commits, copySourcePRLabels, }: {
commits: Commit[];
copySourcePRLabels: ValidConfigOptions['copySourcePRLabels'];
}): string[];