UNPKG

backport

Version:

A CLI tool that automates the process of backporting commits

12 lines (11 loc) 496 B
import { BackportResponse } from '../../../backportRun'; import { ValidConfigOptions } from '../../../options/options'; 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;