UNPKG

release-please

Version:

generate release PRs based on the conventionalcommits.org spec

12 lines (11 loc) 317 B
export interface PullRequest { readonly headBranchName: string; readonly baseBranchName: string; readonly number: number; readonly mergeCommitOid?: string; readonly title: string; readonly body: string; readonly labels: string[]; readonly files: string[]; readonly sha?: string; }