Conversation
✅ Deploy Preview for calculator-dhanushnehru ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
There was a problem hiding this comment.
Pull Request Overview
This PR adds a bug report issue template to the GitHub repository to standardize bug reporting. The template uses GitHub's YAML-based issue forms to collect structured information from users when they report bugs.
- Adds a YAML configuration file to enable custom issue templates
- Creates a comprehensive bug report template with multiple fields including title, description, reproduction steps, expected/actual behavior, environment details, screenshots/logs, and additional notes
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| .github/ISSUE_TEMPLATE/config.yml | Enables blank issues alongside the new template |
| .github/ISSUE_TEMPLATE/bug_report.yml | Defines the structured bug report form with validation and required fields |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
| - type: input | ||
| id: title | ||
| attributes: | ||
| label: Title | ||
| description: A short, descriptive title for the bug. | ||
| placeholder: "Feature not loading on dashboard" | ||
| validations: | ||
| required: true | ||
|
|
There was a problem hiding this comment.
The 'Title' input field is redundant since GitHub issue forms already require users to provide a title at the top of the form. This field duplicates that functionality and will confuse users. Consider removing this field entirely.
| - type: input | |
| id: title | |
| attributes: | |
| label: Title | |
| description: A short, descriptive title for the bug. | |
| placeholder: "Feature not loading on dashboard" | |
| validations: | |
| required: true |
closes #179
Bug issue reporting template has been added.