Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🌐 Web query:
CodeRabbit base_branches pattern regex glob configuration💡 Result:
Short answer — what to put in .coderabbit.yaml:
Use the reviews.auto_review.base_branches field (array) in your .coderabbit.yaml or the web UI. This lists additional base branches CodeRabbit will automatically review (default is the repo default branch). [1]
Example (.coderabbit.yaml):
reviews:
auto_review:
enabled: true
base_branches: ["staging", "release/.*"]
Pattern support: CodeRabbit’s docs show base_branches as an array; community/config examples show using regex-style patterns (e.g., "release/.*") to match multiple branch names. If you rely on pattern matching, test it in your repo (or use the @coderabbitai configuration command) to confirm behavior. [1][2]
Sources:
[1] CodeRabbit configuration reference — reviews.auto_review.base_branches. [docs.coderabbit.ai/reference/configuration]
[2] Community/config examples showing regex-style branch patterns (example .coderabbit.yaml snippets).
🌐 Web query:
CodeRabbit .coderabbit.yml base_branches documentation💡 Result:
Summary — .coderabbit.yaml setting for base branches
If you want, I can show a short example snippet to add to your .coderabbit.yaml.
🏁 Script executed:
Repository: WeGo-Together/WeGo_FrontEnd
Length of output: 241
🏁 Script executed:
Repository: WeGo-Together/WeGo_FrontEnd
Length of output: 53
base_branches패턴 수정 필요 — 정규식 형식 오류base_branches는 정규식 패턴을 사용하며, 현재 설정의'/*'는 유효한 정규식이 아닙니다. CodeRabbit 설정 문서에서 확인된 예제들(예:"release/.*")은 모두 정규식 문법을 사용하고 있습니다. 모든 브랜치에 자동 리뷰를 적용하려면'/*'를'.*'로 변경하세요.🤖 Prompt for AI Agents