-
Notifications
You must be signed in to change notification settings - Fork 1
feature-001 이슈 템플릿 생성 #2
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
base: develop
Are you sure you want to change the base?
Conversation
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.
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 ' |
Copilot
AI
Jul 4, 2025
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.
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: '' |
Copilot
AI
Jul 4, 2025
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.
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: '' |
Copilot
AI
Jul 4, 2025
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.
Remove the empty assignees line if no default assignee is intended to streamline the template.
| assignees: '' |
No description provided.