release-please
Version:
generate release PRs based on the conventionalcommits.org spec
15 lines (14 loc) • 486 B
TypeScript
import { Update } from './update';
import { Version } from './version';
import { PullRequestBody } from './util/pull-request-body';
import { PullRequestTitle } from './util/pull-request-title';
export interface ReleasePullRequest {
readonly title: PullRequestTitle;
readonly body: PullRequestBody;
readonly labels: string[];
readonly headRefName: string;
readonly version?: Version;
readonly draft: boolean;
readonly group?: string;
updates: Update[];
}