release-please
Advanced tools
Comparing version 9.5.0-candidate.0 to 10.0.0-candidate.0
@@ -309,2 +309,6 @@ "use strict"; | ||
var _a; | ||
if (this.labels.length > 0 && | ||
!this.labels.every(label => pullRequest.labels.includes(label))) { | ||
return false; | ||
} | ||
// in a monorepo, filter PR head branch by component | ||
@@ -315,2 +319,6 @@ return (((_a = branch_name_1.BranchName.parse(pullRequest.headRefName)) === null || _a === void 0 ? void 0 : _a.getComponent()) === | ||
: (pullRequest) => { | ||
if (this.labels.length > 0 && | ||
!this.labels.every(label => pullRequest.labels.includes(label))) { | ||
return false; | ||
} | ||
// accept any release PR head branch pattern | ||
@@ -317,0 +325,0 @@ return !!branch_name_1.BranchName.parse(pullRequest.headRefName); |
{ | ||
"name": "release-please", | ||
"version": "9.5.0-candidate.0", | ||
"version": "10.0.0-candidate.0", | ||
"description": "generate release PRs based on the conventionalcommits.org spec", | ||
@@ -5,0 +5,0 @@ "main": "./build/src/index.js", |
343809
6445