|
| 1 | +# Pull Request Template |
| 2 | + |
| 3 | +## Description |
| 4 | +<!-- Provide a brief description of the changes in this PR --> |
| 5 | + |
| 6 | +## Type of Change |
| 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 addition/update |
| 16 | + |
| 17 | +## Related Issues |
| 18 | +<!-- Link to related issues using #issue_number --> |
| 19 | + |
| 20 | +Fixes # |
| 21 | + |
| 22 | +## Changes Made |
| 23 | +<!-- List the main changes made in this PR --> |
| 24 | + |
| 25 | +- |
| 26 | +- |
| 27 | +- |
| 28 | + |
| 29 | +## Testing |
| 30 | +<!-- Describe the tests you ran to verify your changes --> |
| 31 | + |
| 32 | +- [ ] Unit tests pass (`dotnet test`) |
| 33 | +- [ ] Build succeeds (`dotnet build`) |
| 34 | +- [ ] Code formatting is correct (`dotnet format --verify-no-changes`) |
| 35 | +- [ ] No new analyzer warnings |
| 36 | +- [ ] Manual testing completed |
| 37 | + |
| 38 | +## Checklist |
| 39 | +<!-- Mark completed items with an "x" --> |
| 40 | + |
| 41 | +- [ ] My code follows the project's [coding standards](CONTRIBUTING.md) |
| 42 | +- [ ] I have performed a self-review of my code |
| 43 | +- [ ] I have commented my code, particularly in hard-to-understand areas |
| 44 | +- [ ] I have made corresponding changes to the documentation |
| 45 | +- [ ] My changes generate no new warnings |
| 46 | +- [ ] I have added tests that prove my fix is effective or that my feature works |
| 47 | +- [ ] New and existing unit tests pass locally with my changes |
| 48 | +- [ ] Any dependent changes have been merged and published |
| 49 | + |
| 50 | +## Screenshots (if applicable) |
| 51 | +<!-- Add screenshots to help explain your changes --> |
| 52 | + |
| 53 | +## Additional Notes |
| 54 | +<!-- Add any other context about the PR here --> |
0 commit comments