Skip to content

Commit d3c9ef8

Browse files
fix: replace ignore_branches with base_branches in coderabbit config (#1160)
`ignore_branches` is not a valid field in the CodeRabbit schema. Replacing it with the correct `base_branches` field using a negative lookahead regex to exclude `release/**` branches from auto-review. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Chores** * Updated automated review configuration to apply across non-release branches. * Release branch reviews remain excluded. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent bf5ee35 commit d3c9ef8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.coderabbit.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
reviews:
22
auto_review:
3-
ignore_branches:
4-
- 'release/**'
3+
base_branches:
4+
- '^(?!release/).*'
55
path_filters:
66
- '!dist/**'
77
- '!CHANGELOG.md'

0 commit comments

Comments
 (0)