Conversation
There was a problem hiding this comment.
Pull Request Overview
Adds standardized GitHub issue templates for feature requests and bug reports to streamline contribution workflows.
- Introduces
.github/ISSUE_TEMPLATE/feature.mdfor feature proposals. - Introduces
.github/ISSUE_TEMPLATE/bug_report.mdfor bug reporting.
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| .github/ISSUE_TEMPLATE/feature.md | New template for creating feature issues |
| .github/ISSUE_TEMPLATE/bug_report.md | New template for creating bug reports |
Comments suppressed due to low confidence (4)
.github/ISSUE_TEMPLATE/feature.md:10
- [nitpick] Standardize template language: mixing Korean section headers with English frontmatter may confuse contributors; consider unifying language usage.
**< 요약 >**
.github/ISSUE_TEMPLATE/feature.md:12
- Avoid using raw HTML tags like
<br>in GitHub issue templates; prefer Markdown spacing or headings for better readability.
<br>
.github/ISSUE_TEMPLATE/bug_report.md:10
- [nitpick] Similar to the feature template, consider unifying the section header language instead of mixing Korean and English.
**< 요약 >**
.github/ISSUE_TEMPLATE/bug_report.md:12
- Using
<br>tags in templates is discouraged; use Markdown line breaks or spacing conventions instead.
<br>
| --- | ||
| name: Feature | ||
| about: Suggest an idea for this project | ||
| title: 'FEATURE-000 ' |
There was a problem hiding this comment.
Remove the trailing space inside the title placeholder to avoid unintended formatting issues.
| title: 'FEATURE-000 ' | |
| title: 'FEATURE-000' |
| about: Suggest an idea for this project | ||
| title: 'FEATURE-000 ' | ||
| labels: develop | ||
| assignees: '' |
There was a problem hiding this comment.
An empty assignees field can be omitted to reduce clutter; if no assignee is needed by default, consider removing this line.
| assignees: '' |
| about: Create a report to help us improve | ||
| title: BUGFIX-000 | ||
| labels: bug | ||
| assignees: '' |
There was a problem hiding this comment.
Remove the empty assignees line if no default assignee is intended to streamline the template.
| assignees: '' |
No description provided.