Skip to content

Commit 3c67bda

Browse files
authored
Merge pull request #7 from Magic-Man-us/copilot/create-pull-request-template
Add pull request template
2 parents c9c9e23 + c1c74d7 commit 3c67bda

File tree

1 file changed

+68
-0
lines changed

1 file changed

+68
-0
lines changed

.github/pull_request_template.md

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
## Description
2+
3+
<!-- Provide a brief description of the changes in this PR -->
4+
5+
## Type of Change
6+
7+
<!-- Mark the relevant option with an "x" -->
8+
9+
- [ ] Bug fix (non-breaking change which fixes an issue)
10+
- [ ] New feature (non-breaking change which adds functionality)
11+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
12+
- [ ] Documentation update
13+
- [ ] Code refactoring
14+
- [ ] Performance improvement
15+
- [ ] Test coverage improvement
16+
- [ ] CI/CD or build process change
17+
18+
## Related Issue
19+
20+
<!-- Link to the issue this PR addresses, if applicable -->
21+
<!-- Use "Fixes #123", "Closes #123", or "Related to #123" as appropriate -->
22+
23+
Fixes #(issue number)
24+
25+
## Changes Made
26+
27+
<!-- List the specific changes made in this PR -->
28+
29+
- [Brief description of change 1]
30+
- [Brief description of change 2]
31+
- [Brief description of change 3]
32+
33+
## Testing
34+
35+
<!-- Describe the tests you ran to verify your changes -->
36+
37+
- [ ] Existing tests pass (`make test`)
38+
- [ ] New tests added for new functionality
39+
- [ ] Manual testing performed
40+
41+
### Test Configuration
42+
43+
- Python version:
44+
- Operating system:
45+
46+
## Checklist
47+
48+
<!-- Mark completed items with an "x" -->
49+
50+
- [ ] My code follows the style guidelines of this project
51+
- [ ] I have run `make lint` and addressed any issues
52+
- [ ] I have run `make type` and addressed any issues
53+
- [ ] I have performed a self-review of my own code
54+
- [ ] I have commented my code, particularly in hard-to-understand areas
55+
- [ ] I have made corresponding changes to the documentation
56+
- [ ] My changes generate no new warnings
57+
- [ ] I have added tests that prove my fix is effective or that my feature works
58+
- [ ] New and existing unit tests pass locally with my changes
59+
- [ ] I have run `make precommit` and all pre-commit hooks pass
60+
- [ ] Any dependent changes have been merged and published
61+
62+
## Screenshots (if applicable)
63+
64+
<!-- Add screenshots to help explain your changes, if applicable -->
65+
66+
## Additional Notes
67+
68+
<!-- Add any additional information that reviewers should know -->

0 commit comments

Comments
 (0)