From 7b1d854a8a5fba217f2586be7c1299ffc0882e22 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 4 Jan 2026 00:25:23 +0000 Subject: [PATCH] Add labels to issue templates and create PR template - Added 'bug' label to bug_report.md template - Added 'enhancement' label to enhancement.md template - Added 'feature' label to feature_request.md template - Created pull request template with standard sections --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- .github/ISSUE_TEMPLATE/enhancement.md | 2 +- .github/ISSUE_TEMPLATE/feature_request.md | 2 +- .github/PULL_REQUEST_TEMPLATE.md | 24 +++++++++++++++++++++++ 4 files changed, 27 insertions(+), 3 deletions(-) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 76c2340..25bcc2e 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -2,7 +2,7 @@ name: Bug report about: Create a report to help us improve title: "[BUG] Bug title" -labels: '' +labels: 'bug' assignees: '' --- diff --git a/.github/ISSUE_TEMPLATE/enhancement.md b/.github/ISSUE_TEMPLATE/enhancement.md index 99c91f8..84707ff 100644 --- a/.github/ISSUE_TEMPLATE/enhancement.md +++ b/.github/ISSUE_TEMPLATE/enhancement.md @@ -2,7 +2,7 @@ name: Enhancement about: Suggest a small enhancement to help us improve title: "[ENHANCEMENT] Title" -labels: '' +labels: 'enhancement' assignees: '' --- diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index e0c0168..81eb939 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -2,7 +2,7 @@ name: Feature request about: Suggest an idea for this project title: "[FEATURE]" -labels: '' +labels: 'feature' assignees: '' --- diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..0cb376c --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,24 @@ +## Description +A brief description of the changes in this PR. + +## Related Issue +Fixes #(issue number) + +## Type of Change +- [ ] Bug fix +- [ ] New feature +- [ ] Enhancement +- [ ] Documentation update +- [ ] Other (please describe) + +## Checklist +- [ ] I have tested these changes locally +- [ ] I have updated the documentation (if applicable) +- [ ] My code follows the project's coding standards +- [ ] I have added tests that prove my fix/feature works (if applicable) + +## Screenshots (if applicable) +Add screenshots to help explain your changes. + +## Additional Notes +Any additional information or context about the PR.