Skip to content

Commit

Permalink
fix: allow pr check on old version branches
Browse files Browse the repository at this point in the history
  • Loading branch information
jBouyoud committed Aug 25, 2023
1 parent 398ce9c commit 84a5245
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/auto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1005,7 +1005,7 @@ export default class Auto {
// adding this command without resorting to bash if/else statements.
if (
env.isCi &&
(env.branch === this.baseBranch || this.inPrereleaseBranch())
(env.branch === this.baseBranch || this.inPrereleaseBranch() || this.inOldVersionBranch())
) {
process.exit(0);
}
Expand Down

0 comments on commit 84a5245

Please sign in to comment.