backport
Version:
A CLI tool that automates the process of backporting commits
12 lines (11 loc) • 514 B
TypeScript
import type { ValidConfigOptions } from '../../../options/options.js';
import type { BackportResponse } from '../../run-sequentially.js';
export declare function createStatusComment({ options, backportResponse, }: {
options: ValidConfigOptions;
backportResponse: BackportResponse;
}): Promise<void>;
export declare function getCommentBody({ options, pullNumber, backportResponse, }: {
options: ValidConfigOptions;
pullNumber: number;
backportResponse: BackportResponse;
}): string | undefined;