Add GitHub templates for issues and pull requests#122
Add GitHub templates for issues and pull requests#122amulaj wants to merge 3 commits intodirections4partners:mainfrom
Conversation
There was a problem hiding this comment.
Pull request overview
Adds GitHub contribution templates to standardize how users file issues and how contributors open pull requests, improving triage consistency across the repo.
Changes:
- Added a bug report issue template.
- Added a feature request issue template.
- Added a pull request template.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| .github/pull_request_template.md | Introduces a PR template with sections for description, changes, screenshots, and issue linkage. |
| .github/ISSUE_TEMPLATE/feature_request.md | Adds a structured template for proposing enhancements. |
| .github/ISSUE_TEMPLATE/bug_report.md | Adds a structured template for reporting bugs with repro steps and expected/actual behavior. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <[email protected]>
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| What does this change do? | ||
|
|
||
| ## Changes | ||
| Describe the changes in this pull request. | ||
|
|
||
| ## Screenshots (if UI changes) | ||
| Add screenshots or recordings if helpful. | ||
|
|
||
| Closes #[replace with issue no.] |
There was a problem hiding this comment.
The template guidance text (e.g., “What does this change do?” / “Describe the changes…”) will be submitted verbatim into PR descriptions unless the author deletes it. Consider converting these helper prompts to HTML comments so contributors get guidance without adding noise to the PR body.
| What does this change do? | |
| ## Changes | |
| Describe the changes in this pull request. | |
| ## Screenshots (if UI changes) | |
| Add screenshots or recordings if helpful. | |
| Closes #[replace with issue no.] | |
| <!-- What does this change do? --> | |
| ## Changes | |
| <!-- Describe the changes in this pull request. --> | |
| ## Screenshots (if UI changes) | |
| <!-- Add screenshots or recordings if helpful. --> | |
| <!-- Closes #[replace with issue no.] --> |
Description
This pull request adds standardized templates for bug reports, feature requests, and pull requests to the repository. These templates are designed to improve the quality and consistency of issue and PR submissions, making it easier for maintainers to triage and address contributions.
Changes
.github/ISSUE_TEMPLATE/bug_report.md) to guide users in providing clear and actionable bug reports..github/ISSUE_TEMPLATE/feature_request.md) to help users submit well-structured enhancement proposals..github/pull_request_template.md) to standardize the information provided when submitting pull requests.Closes #121