We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 392d775 commit 1479bb6Copy full SHA for 1479bb6
1 file changed
scripts/update-experimental-branches.js
@@ -18,7 +18,7 @@ async function main() {
18
if (!prnums.length) {
19
return; // No enlisted PRs, nothing to update
20
}
21
- if (!prnums.some(n => n === triggeredPR)) {
+ if (triggeredPR && !prnums.some(n => n === triggeredPR)) {
22
return; // Only have work to do for enlisted PRs
23
24
console.log(`Performing experimental branch updating and merging for pull requests ${prnums.join(", ")}`);
0 commit comments