-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Issue Template Parsing Issue #99
Conversation
|
워크스루이 풀 리퀘스트는 GitHub 이슈 템플릿에 대한 두 가지 주요 변경 사항을 포함하고 있습니다. 첫째, 버그 보고서 템플릿에 YAML 프론트 매터를 추가하여 템플릿의 이름과 설명을 명시했습니다. 둘째, 컴포넌트 설계 템플릿을 완전히 새로운 구조로 대체하여 더 체계적인 컴포넌트 설계 가이드라인을 제공합니다. 변경 사항
가능한 관련 PR
제안된 리뷰어
시
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Codecov ReportAll modified and coverable lines are covered by tests ✅ |
@@ -1,6 +1,6 @@ | |||
--- | |||
name: "Bug Report" |
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.
라벨까지 추가하면 좋을 것 같아
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.
Actionable comments posted: 0
🧹 Nitpick comments (1)
.github/ISSUE_TEMPLATE/bug_report.md (1)
Line range hint
1-50
: 템플릿 구조 개선을 위한 제안버그 리포트 템플릿의 구조를 더욱 개선하기 위해 다음 사항들을 고려해보시는 것은 어떨까요?
- 우선순위나 심각도를 나타내는 필드 추가
- 관련된 이슈나 PR을 연결할 수 있는 섹션 추가
- 재현 빈도를 표시할 수 있는 필드 추가
다음과 같이 YAML 프론트매터를 확장할 수 있습니다:
--- name: "Bug Report" about: "Report a bug" labels: "bug" +title: "[Bug] " +assignees: "" +projects: "" ---그리고 템플릿 본문에 다음 섹션을 추가하는 것을 고려해보세요:
## 우선순위 (Priority) <!-- 버그의 우선순위를 표시해주세요: - Critical (긴급) - High (높음) - Medium (중간) - Low (낮음) --> ## 관련 이슈/PR <!-- 이 버그와 관련된 이슈나 PR이 있다면 링크해주세요. --> ## 재현 빈도 <!-- 버그가 얼마나 자주 발생하는지 표시해주세요: - 항상 (100%) - 자주 (75%) - 가끔 (50%) - 드물게 (25%) -->
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (2)
.github/ISSUE_TEMPLATE/bug_report.md
(1 hunks).github/ISSUE_TEMPLATE/component_design.md
(1 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
- .github/ISSUE_TEMPLATE/component_design.md
⏰ Context from checks skipped due to timeout of 90000ms (1)
- GitHub Check: chromatic
🔇 Additional comments (1)
.github/ISSUE_TEMPLATE/bug_report.md (1)
1-4
: YAML 구문이 올바르게 수정되었습니다! 👍YAML 프론트매터가 올바르게 추가되었고, 이전 리뷰에서 제안된 대로 라벨도 포함되어 있습니다.
Changes
템플릿 상단에 하이픈이 빠져 YAML 문법을 인식하지 못하는 문제가 있어 수정하였습니다.
Visuals
Checklist
Additional Discussion Points
Summary by CodeRabbit
이 변경사항은 GitHub 이슈 템플릿을 개선하여 더 명확하고 구조화된 이슈 작성을 지원합니다.