Skip to content

Commit

Permalink
fix branch list filter
Browse files Browse the repository at this point in the history
  • Loading branch information
AyodeAwe committed Sep 25, 2024
1 parent 1e1e2d5 commit b0fd518
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/ForwardMerger/forward_merger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export class ForwardMerger extends OpsBotPlugin {
}
);
return branches
.filter((branch) => isVersionedBranch(branch.name))
.filter((branch) => isVersionedBranch(branch.name) || isVersionedUCXBranch(branch.name))
.map((branch) => branch.name);
}

Expand Down

0 comments on commit b0fd518

Please sign in to comment.