Uh oh!
There was an error while loading. Please reload this page.
chore: gitignore가 application.yml을 놓치던 문제 수정 - #245
Conversation
기존 패턴이 application.yaml만 막고 있어 application.yml은 git add -A 시 실수로 커밋될 수 있는 상태였음.
Warning Review limit reached
Next review available in:56 minutes You've used all free OSS reviews for now. Wait for the free limit to reset to keep reviewing this public repository. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Uh oh!
There was an error while loading. Please reload this page.
작업 배경
src/main/resources/application.yml을 만들다가,.gitignore의 실제 패턴이application.yaml(확장자 yaml)만 막고 있어application.yml(확장자 yml)은 무시 대상이 아니라는 걸 발견 (git check-ignore -v로 확인)git add -A를 실수로 돌리면 로컬 DB 자격증명 등이 커밋될 수 있는 구멍이었음변경 사항
.gitignoreapplication.yml,src/main/resources/application.yml,src/main/resources/application.yaml패턴 추가영향 범위
Test Plan
git check-ignore -v src/main/resources/application.yml로 이제 무시됨을 확인🤖 Generated with Claude Code