mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Add check for no relevant PRs
Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
parent
f5ca5e159e
commit
a1d144ffb3
@ -316,6 +316,10 @@ async function cherryPickCommits(prs: ExtendedGithubPrData[]): Promise<void> {
|
||||
}
|
||||
|
||||
async function pickRelevantPrs(prs: ExtendedGithubPrData[], isMasterBranch: boolean): Promise<ExtendedGithubPrData[]> {
|
||||
if (prs.length === 0) {
|
||||
throw new Error("Cannot pick relevant PRs for release if there are none. Are the milestones on github correct?");
|
||||
}
|
||||
|
||||
if (isMasterBranch) {
|
||||
return prs;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user